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

CLM soil temperature and soil moisture

Hello, I also have a question. In the sourcemod, I find two documents defining the soil moisture and temperature . I don't know what this means


1750301446936.png,1750301519167.png
Hi,

To my understanding, both soil temperature and moisture are internally resolved in the CLM. There is a temperature in the CLM forcing input that is "temperature at the lowest atm level," but not the surface soil temperature.
 

oleson

Keith Oleson
CSEG and Liaisons
Staff member
As noted in the subroutine name, InitCold, those are for initialization of the model for a "cold start", when initialization is not provided by an finidat file. After that, soil temperature and moisture are prognostic.
 
As noted in the subroutine name, InitCold, those are for initialization of the model for a "cold start", when initialization is not provided by an finidat file. After that, soil temperature and moisture are prognostic.
Ok. I finally understand. Thank you very much
 
As noted in the subroutine name, InitCold, those are for initialization of the model for a "cold start", when initialization is not provided by an finidat file. After that, soil temperature and moisture are prognostic.
Hey,dear oleson
if I run spin-up enough years and I run formal simulation. Does that means I can't change the initial soil temperature and moisture because they are not input data in the model and there are no initial values of them
 

slevis

Moderator
Staff member
The model changes soil temp and moisture during the simulation. This does not mean that you cannot change the initial values somehow.
 
The model changes soil temp and moisture during the simulation. This does not mean that you cannot change the initial values somehow.
yes , I can change the initial values in the cold start. But after that, can I change it. What I mean is in the formal similation, how to change it. And I don't find soil temperature and moisture in the "r" document.
 

slevis

Moderator
Staff member
The default code does not allow you to change soil temp and moisture partway into a simulation; however, you are free to modify the code to do your research.

I am not aware of a " r" document, sorry.
 
The default code does not allow you to change soil temp and moisture partway into a simulation; however, you are free to modify the code to do your research.

I am not aware of a " r" document, sorry.
The 'r' document means the restart file after spin-up like this 'CMFDV2100_new1.clm2.r.2090-01-01-00000.nc'. I’m so sorry but I want to know if this means in the formal simulation, I can change the soil temp and moisture. But I don't find soil temp and moisture in the restart file.
 

jinmuluo

Jinmu Luo
Member
The 'r' document means the restart file after spin-up like this 'CMFDV2100_new1.clm2.r.2090-01-01-00000.nc'. I’m so sorry but I want to know if this means in the formal simulation, I can change the soil temp and moisture. But I don't find soil temp and moisture in the restart file.
Hi,

If you want to reduce or increase the soil moisture in the initial file, you can reference our talks below.


But in my personal experiences, the soil moisture is adapted to precipitation very quickly within days, see my graph below, best.

1750788181690.png
 
Hi,

If you want to reduce or increase the soil moisture in the initial file, you can reference our talks below.


But in my personal experiences, the soil moisture is adapted to precipitation very quickly within days, see my graph below, best.

View attachment 6868
Hi, thank you very much. It looks like changing it has little effect. May I ask what adjustments I can make if the simulation results of my soil moisture are not very good
 

jinmuluo

Jinmu Luo
Member
Hi, thank you very much. It looks like changing it has little effect. May I ask what adjustments I can make if the simulation results of my soil moisture are not very good
Hi,

I guess you should be able to adjust the soil moisture simulation if you can take a look at the hydraulic parameters in CLM. There are some scale factors in CLM for adjusting the soil hydraulic properties.


src/biogeophys/SoilStateInitTimeConstMod.F90

real(r8) :: bsw_sf ! Scale factor for bsw (unitless)
real(r8) :: hksat_sf ! Scale factor for hksat (unitless)
real(r8) :: sucsat_sf ! Scale factor for sucsat (unitless)
real(r8) :: watsat_sf ! Scale factor for watsat (unitless)

For more information on the above parameters used in hydroloy simulation, pls refer here.

 
Hi,

I guess you should be able to adjust the soil moisture simulation if you can take a look at the hydraulic parameters in CLM. There are some scale factors in CLM for adjusting the soil hydraulic properties.


src/biogeophys/SoilStateInitTimeConstMod.F90

real(r8) :: bsw_sf ! Scale factor for bsw (unitless)
real(r8) :: hksat_sf ! Scale factor for hksat (unitless)
real(r8) :: sucsat_sf ! Scale factor for sucsat (unitless)
real(r8) :: watsat_sf ! Scale factor for watsat (unitless)

For more information on the above parameters used in hydroloy simulation, pls refer here.

OK,thank you very much. I'll do it
 
Top