CMEPS
CMEPS copied to clipboard
NUOPC Community Mediator for Earth Prediction Systems
There is a `med_id` variable that is set inside of the intenral state: https://github.com/ESCOMP/CMEPS/blob/22dc297fa3f77cf1a232618f5428c89b460032ca/mediator/med_internalstate_mod.F90#L19 The use of component ids seems to be a carryover from before the NUOPC implementation. The...
@mvertens I can't see anywhere that this variable is used https://github.com/ESCOMP/CMEPS/blob/master/cime_config/config_component.xml#L532 can it be removed?
Most of the variables defined in https://github.com/ESCOMP/CMEPS/blob/master/cime_config/config_component.xml are not specific to the cmeps driver and when a new variable is introduced in one driver it can cause issues in the...
Based on discussion with @mvertens (in the context of https://github.com/ESMCI/cime/issues/3962): The default mapnames in this block of `config_component.xml` should be changed from `idmap` to `unset`: https://github.com/ESCOMP/CMEPS/blob/cf0d47ba7780783bdc812fb420322ce1b782b810/cime_config/config_component.xml#L1354-L1553 The problem with having...
We would like the capability to write a restart file set and finalize the model based on a system signal, this signal may originate with a user or with some...
@uturuncoglu @mvertens @jedwards4b Currently we have two background fill types handling unmapped points and they are built directly into the mapping type. We'd like to separate the background fill option...
I would like to move away from hard coding mask values based on the coupling_mode (see code in med_map_mod.F90). Several applications use multiple compset configurations, each would require a new...
It may be faster here to define a new variable lscale and do ``` if(present(scale)) then lscale = scale else lscale = 1.0R8 endif ``` in this way you avoid...
These variables were defined but not used. PR #107 removes them from the source code, are they needed?
If coupling_mode is xyz I would like the yaml file to be named fd_xyz.yaml this would make the logic of determining supported coupling_modes in buildnml more automated and will allow...