Skip to content
GitLab
Menu
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
Menu
Open sidebar
li213
DryVRtool
Commits
c74cc6a7
Commit
c74cc6a7
authored
Nov 10, 2021
by
li213
Browse files
splitting the plotting and verification functions, further change dependencies
parent
638f61a9
Changes
36
Hide whitespace changes
Inline
Side-by-side
examples/AF_rendezvous/rendezvous_sim.py
View file @
c74cc6a7
...
...
@@ -5,7 +5,7 @@ import matlab.engine
import
pandas
as
pd
import
numpy
as
np
import
datetime
as
dt
import
matplotlib.pyplot
as
plt
#
import matplotlib.pyplot as plt
import
os
...
...
examples/BM_15/BM_15.py
View file @
c74cc6a7
from
scipy.integrate
import
odeint
import
numpy
as
np
import
matplotlib.pyplot
as
plt
#
import matplotlib.pyplot as plt
# Source: https://ths.rwth-aachen.de/research/projects/hypro/brusselator/
...
...
examples/BM_48/BM_48.py
View file @
c74cc6a7
from
scipy.integrate
import
odeint
import
numpy
as
np
import
matplotlib.pyplot
as
plt
#
import matplotlib.pyplot as plt
# Source: https://ths.rwth-aachen.de/research/projects/hypro/brusselator/
...
...
examples/Brusselator/Brusselator.py
View file @
c74cc6a7
from
scipy.integrate
import
odeint
import
numpy
as
np
import
matplotlib.pyplot
as
plt
#
import matplotlib.pyplot as plt
# Source: https://ths.rwth-aachen.de/research/projects/hypro/brusselator/
...
...
examples/ClampedBeam_348/ClampedBeam_348.py
View file @
c74cc6a7
from scipy.integrate import odeint
import numpy as np
import matplotlib.pyplot as plt
#
import matplotlib.pyplot as plt
# Source: https://ths.rwth-aachen.de/research/projects/hypro/brusselator/
examples/FOM_20/FOM_20.py
View file @
c74cc6a7
from
scipy.integrate
import
odeint
import
numpy
as
np
import
matplotlib.pyplot
as
plt
#
import matplotlib.pyplot as plt
def
FOM_20_dynamic
(
y
,
t
,
u1
):
x1
,
x2
,
x3
,
x4
,
x5
,
x6
,
x7
,
x8
,
x9
,
x10
,
x11
,
x12
,
x13
,
x14
,
x15
,
x16
,
x17
,
x18
,
x19
,
x20
=
y
...
...
examples/Heli_20/Heli_20.py
View file @
c74cc6a7
from
scipy.integrate
import
odeint
import
numpy
as
np
import
matplotlib.pyplot
as
plt
#
import matplotlib.pyplot as plt
def
Heli_20_dynamic
(
y
,
t
,
u1
,
u2
,
u3
,
u4
,
u5
,
u6
):
x1
,
x2
,
x3
,
x4
,
x5
,
x6
,
x7
,
x8
,
x9
,
x10
,
x11
,
x12
,
x13
,
x14
,
x15
,
x16
,
x17
,
x18
,
x19
,
x20
=
y
...
...
examples/ISS/ISS.py
View file @
c74cc6a7
from
scipy.integrate
import
odeint
import
numpy
as
np
import
matplotlib.pyplot
as
plt
#
import matplotlib.pyplot as plt
def
ISS_dynamic
(
y
,
t
,
u1
,
u2
,
u3
):
x1
,
x2
,
x3
,
x4
,
x5
,
x6
,
x7
,
x8
,
x9
,
x10
,
x11
,
x12
,
x13
,
x14
,
x15
,
x16
,
x17
,
x18
,
x19
,
x20
,
x21
,
x22
,
x23
,
x24
,
x25
=
y
...
...
examples/MCS/MCS.py
View file @
c74cc6a7
from
scipy.integrate
import
odeint
import
numpy
as
np
import
matplotlib.pyplot
as
plt
#
import matplotlib.pyplot as plt
def
MCS_dynamic
(
y
,
t
,
u1
,
u2
):
x1
,
x2
,
x3
,
x4
,
x5
,
x6
,
x7
,
x8
=
y
...
...
examples/PDE_20/PDE_20.py
View file @
c74cc6a7
from
scipy.integrate
import
odeint
import
numpy
as
np
import
matplotlib.pyplot
as
plt
#
import matplotlib.pyplot as plt
def
PDE_20_dynamic
(
y
,
t
,
u1
):
x1
,
x2
,
x3
,
x4
,
x5
,
x6
,
x7
,
x8
,
x9
,
x10
,
x11
,
x12
,
x13
,
x14
,
x15
,
x16
,
x17
,
x18
,
x19
,
x20
=
y
...
...
examples/PDE_6/PDE.py
View file @
c74cc6a7
from
scipy.integrate
import
odeint
import
numpy
as
np
import
matplotlib.pyplot
as
plt
#
import matplotlib.pyplot as plt
def
PDE_dynamics
(
y
,
t
,
u1
):
x1
,
x2
,
x3
,
x4
,
x5
,
x6
=
y
...
...
examples/biological_model_1/biological_model_1.py
View file @
c74cc6a7
from
scipy.integrate
import
odeint
import
numpy
as
np
import
matplotlib.pyplot
as
plt
#
import matplotlib.pyplot as plt
# Source: https://ths.rwth-aachen.de/research/projects/hypro/biological-model-i/
...
...
examples/biological_model_2/biological_model_2.py
View file @
c74cc6a7
from
scipy.integrate
import
odeint
import
numpy
as
np
import
matplotlib.pyplot
as
plt
#
import matplotlib.pyplot as plt
# Source: https://ths.rwth-aachen.de/research/projects/hypro/biological-model-ii/
...
...
examples/buckling_column/buckling_column.py
View file @
c74cc6a7
from
scipy.integrate
import
odeint
import
numpy
as
np
import
matplotlib.pyplot
as
plt
#
import matplotlib.pyplot as plt
# Source: https://ths.rwth-aachen.de/research/projects/hypro/buckling-column/
...
...
examples/cars/test.py
View file @
c74cc6a7
from
InOutput
import
*
import
matplotlib.pyplot
as
plt
#
import matplotlib.pyplot as plt
from
simulate
import
*
from
TC_Graph
import
*
...
...
@@ -61,7 +61,7 @@ PW_Bloat_to_tube('Acc1;Const', [0.1000,0.1000,0.1000,0.2000,0.1000,1.0000,0.1000
'''
from InOutput import *
import matplotlib.pyplot as plt
#
import matplotlib.pyplot as plt
from TC_Graph import *
#g = mergeGraph()
...
...
examples/cars_fix/test.py
View file @
c74cc6a7
from
InOutput
import
*
import
matplotlib.pyplot
as
plt
#
import matplotlib.pyplot as plt
from
simulate
import
*
from
TC_Graph
import
*
...
...
@@ -61,7 +61,7 @@ PW_Bloat_to_tube('Acc1;Const', [0.1000,0.1000,0.1000,0.2000,0.1000,1.0000,0.1000
'''
from InOutput import *
import matplotlib.pyplot as plt
#
import matplotlib.pyplot as plt
from TC_Graph import *
#g = mergeGraph()
...
...
examples/coupled_vanderpol/coupled_vanderpol.py
View file @
c74cc6a7
from
scipy.integrate
import
odeint
import
numpy
as
np
import
matplotlib.pyplot
as
plt
#
import matplotlib.pyplot as plt
# Source: https://ths.rwth-aachen.de/research/projects/hypro/spring-pendulum/
...
...
examples/jet_engine/jet_engine.py
View file @
c74cc6a7
from
scipy.integrate
import
odeint
import
numpy
as
np
import
matplotlib.pyplot
as
plt
#
import matplotlib.pyplot as plt
# Source: https://ths.rwth-aachen.de/research/projects/hypro/jet-engine/
...
...
examples/lac_operon/lac_operon.py
View file @
c74cc6a7
from
scipy.integrate
import
odeint
import
numpy
as
np
import
matplotlib.pyplot
as
plt
#
import matplotlib.pyplot as plt
# Source: https://ths.rwth-aachen.de/research/projects/hypro/lac-operon/
...
...
examples/lorentz/lorentz.py
View file @
c74cc6a7
from
scipy.integrate
import
odeint
import
numpy
as
np
import
matplotlib.pyplot
as
plt
#
import matplotlib.pyplot as plt
# Souce: https://ths.rwth-aachen.de/research/projects/hypro/lorentz-system/
...
...
Prev
1
2
Next
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment