I am trying to run the CESM2 with synthetic volcanoes as the only external forcing. The forcing file is generated from a slightly modified version of createVolcEruptV3.ncl. This means the input type is SERIAL. To run in pre-indistrial conditions I am using the BWma1850 compset (see this thread for futher context). However, this causes the model to crash since the external forcing fiels expect forcing files with input type CYCLICAL.
Is it possible to run the BWma1850 compset with one external forcing file in serial mode, while keeping the others cycling in pre-industrial conditions? Or should this be achieved in a different way?
I also tried removing all external forcing files and setting the input type to INTERP_MISSING_MONTHS, i.e., in user_in_cam I have:
But this will not unset the ext_frc_cycle_yr parameter, causing the model to crash since the input type INTERP_MISSING_MONTHS is invalid when the model wants to cylce on a year.
Is it possible to run the BWma1850 compset with one external forcing file in serial mode, while keeping the others cycling in pre-industrial conditions? Or should this be achieved in a different way?
I also tried removing all external forcing files and setting the input type to INTERP_MISSING_MONTHS, i.e., in user_in_cam I have:
Code:
ext_frc_specifier = 'SO2 -> /my/new/file.nc'
ext_frc_type = 'INTERP_MISSING_MONTHS'
But this will not unset the ext_frc_cycle_yr parameter, causing the model to crash since the input type INTERP_MISSING_MONTHS is invalid when the model wants to cylce on a year.
NOTE: I am able to run with my own forcing file in BWmaHIST, but in this case other external forcings would also change over the years (e.g. CO2), which is what I want to avoid.