Source code for run_console


from aeolis.console_debug import aeolis_debug
import cProfile

[docs] def main()-> None: '''Runs AeoLiS model in debugging mode.''' # configfile = r'c:\Users\weste_bt\aeolis\Tests\RotatingWind\Barchan_Grid270\aeolis.txt' configfile = r'C:\Users\svries\Documents\GitHub\Bart_mass\aeolis_duran.txt' # configfile = r'C:\Users\svries\Documents\GitHub\Bart_mass\aeolis_windspeed.txt' aeolis_debug(configfile)
if __name__ == '__main__': main()