This is the main repository for IOW earth-system model project. Here you will find scripts to build, prepare and run the model. The components of this coupled model will have their own repositiories. https://sven-karsten.github.io/iow_esm/intro.html
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 

16 lines
240 B

# -*- coding: utf-8 -*-
"""
Created on Thu Sep 9 13:51:29 2021
@author: Sven
"""
import sys
sys.path.append('./gui')
from gui import *
while True:
gui = IowEsmGui()
gui.window.mainloop()
if not gui.restart:
break