From 68ca65b77ed9a37cd60e4c6364b6449ca601a69c Mon Sep 17 00:00:00 2001 From: Nick Wogan Date: Tue, 21 May 2024 15:25:34 -0700 Subject: [PATCH] python test includes evo --- tests/test.py | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/tests/test.py b/tests/test.py index 7c3424a..cc584e4 100644 --- a/tests/test.py +++ b/tests/test.py @@ -1,4 +1,4 @@ -from photochem import Atmosphere, zahnle_earth +from photochem import Atmosphere, EvoAtmosphere, zahnle_earth def main(): @@ -11,5 +11,14 @@ def main(): tn = pc.step() pc.destroy_stepper() + pc1 = EvoAtmosphere(zahnle_earth,\ + "testevo_settings2.yaml",\ + "../templates/ModernEarth/Sun_now.txt",\ + "../templates/ModernEarth/atmosphere_ModernEarth.txt") + + pc1.initialize_stepper(pc1.wrk.usol) + tn = pc1.step() + pc1.destroy_stepper() + if __name__ == "__main__": main() \ No newline at end of file