Scheduled Downtime
On Tuesday 24 October 2023 @ 5pm MT the forums will be in read only mode in preparation for the downtime. On Wednesday 25 October 2023 @ 5am MT, this website will be down for maintenance and expected to return online later in the morning.
Normal Operations
The forums are back online with normal operations. If you notice any issues or errors related to the forums, please reach out to help@ucar.edu

Running WACCM with rotation of the earth reversed

Hi, I would like to run the F_2000_WACCM_SC model configuration for CESM 1.2.2 with the direction of rotation of the earth reversed. However, I cannot seem to find an obvious place in the code to make this alteration. How might I go about making this change? Would it involve altering the model code itself? If so, where in the model code might I look to do this? Thank you very much! Laurel Regibeau-Rockett
 

mmills

CSEG and Liaisons
Staff member
From grepping the code, I found the angular velocity of the Earth is defined in this module:components/cam/src/utils/physconst.F90 real(r8), public, protected :: omega      = shr_const_omega        ! earth rot ~ rad/sec     omega       = 2.0_R8*pi/sdayYou could try setting that to the negative of that value. I do not know if there are other places in the code where this is defined. You might also ask about this in the CAM forum here.
 

mmills

CSEG and Liaisons
Staff member
From grepping the code, I found the angular velocity of the Earth is defined in this module:components/cam/src/utils/physconst.F90 real(r8), public, protected :: omega      = shr_const_omega        ! earth rot ~ rad/sec     omega       = 2.0_R8*pi/sdayYou could try setting that to the negative of that value. I do not know if there are other places in the code where this is defined. You might also ask about this in the CAM forum here.
 
Top