Skip to content

Commit

Permalink
python test includes evo
Browse files Browse the repository at this point in the history
  • Loading branch information
Nicholaswogan committed May 21, 2024
1 parent f867da9 commit 68ca65b
Showing 1 changed file with 10 additions and 1 deletion.
11 changes: 10 additions & 1 deletion tests/test.py
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
from photochem import Atmosphere, zahnle_earth
from photochem import Atmosphere, EvoAtmosphere, zahnle_earth

def main():

Expand All @@ -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()

0 comments on commit 68ca65b

Please sign in to comment.