We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 06985b5 commit 0f707f6Copy full SHA for 0f707f6
1 file changed
fluidsim/solvers/ns3d/test_solver.py
@@ -301,10 +301,13 @@ def test_output(self):
301
sim2.output.kolmo_law.plot_hv_dependencies(tmin=tmin, tmax=tmax)
302
sim2.output.kolmo_law.plot_Jhv_vector(tmin=tmin, tmax=tmax)
303
304
- result = sim2.output.kolmo_law.load_temp_average(tmin=tmin, tmax=tmax)
+ result = sim2.output.kolmo_law.load_temp_average()
305
306
S2_k_r = result["S2_k_r"]
307
+ Jl_k_r = result["Jl_k_r"]
308
assert S2_k_r[0] == 0, S2_k_r[0]
309
+ assert Jl_k_r[0] == 0, Jl_k_r[0]
310
+ assert Jl_k_r[-1] == 0, Jl_k_r[-1]
311
312
sim3 = fls.load_state_phys_file(path_run, modif_save_params=False)
313
sim3.params.time_stepping.t_end += 0.2
0 commit comments