Skip to content

Commit

Permalink
Merge pull request #275 from blychs/add_camx
Browse files Browse the repository at this point in the history
Add camx
  • Loading branch information
rschwant authored Sep 23, 2024
2 parents a558c3f + ad71591 commit adc178d
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions melodies_monet/driver.py
Original file line number Diff line number Diff line change
Expand Up @@ -592,6 +592,9 @@ def open_model_files(self, time_interval=None, control_dict=None):
self.obj = mio.models._cesm_se_mm.open_mfdataset(self.files,**self.mod_kwargs)
#self.obj, self.obj_scrip = read_cesm_se.open_mfdataset(self.files,**self.mod_kwargs)
#self.obj.monet.scrip = self.obj_scrip
elif "camx" in self.model.lower():
self.mod_kwargs.update({"var_list": list_input_var})
self.obj = mio.models._camx_mm.open_mfdataset(self.files, **self.mod_kwargs)
elif 'raqms' in self.model.lower():
if len(self.files) > 1:
self.obj = mio.raqms.open_mfdataset(self.files,**self.mod_kwargs)
Expand Down

0 comments on commit adc178d

Please sign in to comment.