forked from sebapersson/Benchmark-Models-PEtab-SciML
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathmodel_Ko_NeurIPS2023.xml
More file actions
102 lines (89 loc) · 3.04 KB
/
Copy pathmodel_Ko_NeurIPS2023.xml
File metadata and controls
102 lines (89 loc) · 3.04 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
<?xml version="1.0" encoding="UTF-8"?>
<sbml xmlns="http://www.sbml.org/sbml/level3/version2/core"
level="3"
version="2">
<model id="Ko_NeurIPS2023"
name="Ko_NeurIPS2023"
timeUnits="second">
<notes>
<body xmlns="http://www.w3.org/1999/xhtml">
<p>
Second-order neural ODE model of double-pendulum dynamics, based on
Ko et al., NeurIPS 2023. The angular accelerations are supplied by
the neural-network outputs through the PEtab-SciML hybridization table.
</p>
</body>
</notes>
<annotation>
<rdf:RDF xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
xmlns:bqmodel="http://biomodels.net/model-qualifiers/">
<rdf:Description rdf:about="#Ko_NeurIPS2023">
<bqmodel:isDescribedBy>
<rdf:Bag>
<rdf:li rdf:resource="https://openreview.net/forum?id=rUFckPrzXR"/>
</rdf:Bag>
</bqmodel:isDescribedBy>
</rdf:Description>
</rdf:RDF>
</annotation>
<listOfUnitDefinitions>
<unitDefinition id="per_second2" name="per second squared">
<listOfUnits>
<unit kind="second" exponent="-2" scale="0" multiplier="1"/>
</listOfUnits>
</unitDefinition>
</listOfUnitDefinitions>
<listOfParameters>
<parameter id="theta1"
name="theta1"
value="-1.1336150169372559"
units="dimensionless"
constant="false"/>
<parameter id="theta2"
name="theta2"
value="-1.3008047342300415"
units="dimensionless"
constant="false"/>
<parameter id="omega1"
name="omega1"
value="-0.5385388135910034"
units="dimensionless"
constant="false"/>
<parameter id="omega2"
name="omega2"
value="-6.1550583839416495"
units="dimensionless"
constant="false"/>
<parameter id="acceleration1"
name="neural_network_angular_acceleration_1"
units="per_second2"
constant="true"/>
<parameter id="acceleration2"
name="neural_network_angular_acceleration_2"
units="per_second2"
constant="true"/>
</listOfParameters>
<listOfRules>
<rateRule variable="theta1">
<math xmlns="http://www.w3.org/1998/Math/MathML">
<ci> omega1 </ci>
</math>
</rateRule>
<rateRule variable="theta2">
<math xmlns="http://www.w3.org/1998/Math/MathML">
<ci> omega2 </ci>
</math>
</rateRule>
<rateRule variable="omega1">
<math xmlns="http://www.w3.org/1998/Math/MathML">
<ci> acceleration1 </ci>
</math>
</rateRule>
<rateRule variable="omega2">
<math xmlns="http://www.w3.org/1998/Math/MathML">
<ci> acceleration2 </ci>
</math>
</rateRule>
</listOfRules>
</model>
</sbml>