Hi! I'm a new user of WRF. I'm trying to investigate the effects of changing soil moisture on boundary layer moist enthalpy. I intend to customize the convrad idealized case. There are couple things I may need to customize among which I want to move the latitude from the tropics to midlatitudes. However I feel confused about how to do so.
Within module_initialize_ideal.F there are
which seems to be the way to change lat/lon. However the discussion here (https://forum.mmm.ucar.edu/phpBB3/viewtopic.php?f=46&t=9777&p=19642#p19642) seems to suggest the the nl_set* functions only affect the metadata. Is that correct?
If it is correct? Where should I make these changes? Within module_initialize_ideal.F, there are also code
and
. Does that mean the latitude and longitude of the whole domain for convrad is set to a constant? The discussion here (https://forum.wrfforum.com/viewtopic.php?f=11&t=3288&p=29608&hilit=set+long+and+lat#p21430) suggest to look at the held_suarez case which sets the latitude and longitude everywhere. I found the code in module_initialize_heldsuarez.F:
. Is this the right way to go?
I'm using WRFv4.3.3
Appreciate for any help!
Thank!
-Qin
Within module_initialize_ideal.F there are
Code:
CALL nl_set_cen_lat(1,20.) CALL nl_set_cen_lon(1,-105.)
If it is correct? Where should I make these changes? Within module_initialize_ideal.F, there are also code
Code:
grid%xlat(i,j)= 10.
Code:
grid%xlong(i,j) = 0.
Code:
grid%xlat(i,j) = (REAL(jg)-0.5)*dphi-90.
Code:
grid%xlong(i,j) = (REAL(ig)-0.5)*dlam-180.
I'm using WRFv4.3.3
Appreciate for any help!
Thank!
-Qin