Skip to content
Snippets Groups Projects
Commit af7a41ea authored by lkugler's avatar lkugler
Browse files

prints

parent e42219d2
No related branches found
No related tags found
No related merge requests found
...@@ -89,7 +89,10 @@ class WorkFlows(object): ...@@ -89,7 +89,10 @@ class WorkFlows(object):
txt += '}' txt += '}'
f.write(txt) f.write(txt)
print('------ start exp from ', exp_config, ' and ', server_config, ' ------') print('------------------------------------------------------')
print('>>> Starting experiment ... ')
print('>>> Experiment configuration: "./config/'+exp_config+'" ')
print('>>> Server configuration: "./config/'+server_config+'"')
#### 1 #### 1
# copy the selected config files (arguments to Workflows(...)) to the scripts directory # copy the selected config files (arguments to Workflows(...)) to the scripts directory
...@@ -133,13 +136,13 @@ class WorkFlows(object): ...@@ -133,13 +136,13 @@ class WorkFlows(object):
#### 6 #### 6
# Set paths and backup scripts # Set paths and backup scripts
self.cluster.log_dir = self.cluster.archivedir+'/logs/' self.cluster.log_dir = self.cluster.archivedir+'/logs/'
print('logging to', self.cluster.log_dir) print('>>> Logging to: "'+self.cluster.log_dir+'"')
if self.cluster.use_slurm: if self.cluster.use_slurm:
self.cluster.slurm_scripts_dir = self.cluster.archivedir+'/slurm-scripts/' self.cluster.slurm_scripts_dir = self.cluster.archivedir+'/slurm-scripts/'
print('SLURM scripts will be in', self.cluster.slurm_scripts_dir) print('>>> SLURM scripts stored in: "', self.cluster.slurm_scripts_dir+'"')
print('------ dartwrf experiment initialized ------') print('>>> DART-WRF experiment initialized. ')
print('--------------------------------------------') print('------------------------------------------------------')
def prepare_WRFrundir(self, init_time): def prepare_WRFrundir(self, init_time):
"""Prepare WRF run directories for all ensemble members """Prepare WRF run directories for all ensemble members
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment