File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change 129
129
wall. Q_flow => 10.0
130
130
]
131
131
prob = ODEProblem (sys, u0, (0 , 3.0 ))
132
- sol = solve (prob, Tsit5 ())
132
+ sol = solve (prob, Rodas4 ())
133
133
134
134
# Heat-flow-rate is equal in magnitude
135
135
# and opposite in direction
165
165
mass. T => T_gas
166
166
]
167
167
prob = ODEProblem (sys, u0, (0 , 3.0 ))
168
- sol = solve (prob, Tsit5 ())
168
+ sol = solve (prob, Rodas4 ())
169
169
170
170
@test sol. retcode == :Success
171
171
@test sol[dissipator. dT] == sol[radiator. port_a. T] - sol[radiator. port_b. T]
200
200
mass. T => 0.0 ,
201
201
]
202
202
prob = ODEProblem (sys, u0, (0 , 3.0 ))
203
- sol = solve (prob, Tsit5 ())
203
+ sol = solve (prob, Rodas4 ())
204
204
205
205
@test sol. retcode == :Success
206
206
@test sol[collector. port_b. Q_flow] + sol[collector. port_a1. Q_flow] + sol[collector. port_a2. Q_flow] ==
You can’t perform that action at this time.
0 commit comments