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

calculation of saturated frozen thermal conductivity of soil

In module SoilTemperatureMod of Community Land Model 3, there a line to calculate saturated frozen thermal conductivity of soil,


> dksat = tkmg(c,j)*0.249**(fl*watsat(c,j))*2.29**watsat(c,j)
>
> 2.29 is for thermal conductivity of ice
> 0.023 for air
> 0.6 for liqid water

what is 0.249 for.


Thanks

------------------------------------
I cannot find the appropriate category for my question, so I just put in bug reporting. Why not open a category for land surface modeling ?
 

mvertens

CSEG and Liaisons
Staff member
The constant 0.249 is the thermal conductivity of water divided by the thermal conductivity of ice. You can rearrange the equation documented in the CLM tech note (eq. 6.60) to get the equation above. However, for one thing, this number shouldn't be hard coded (and neither should 2.29 which is the thermal conductivity of ice). We should be using the variables used in the code for physical constants. For another thing, the value 0.57 is actually used for the thermal conductivity of water instead of 0.60 as it is elsewhere. 0.249 = 0.57/2.29. This was discovered when writing the tech note and is a legacy from the precurser model, the Common Land Model. Since the code was frozen at the time, no changes were made. A future version of the model will probably include changing from the hard coded values to the fixed physical constants
used in the model.
 
Top