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

How to interpret the outputs in column level

jinmuluo

Jinmu Luo
Member
Dear CTSM Community members,

It's a normal question. Can I output my simulation result in column value, and how can I interpret it like plotting different maps in natural soil or agricultural soil?

Thanks!

Jinmu
 

oleson

Keith Oleson
CSEG and Liaisons
Staff member
There will be variables in the history file output that will help. For example,

cols1d_lon and cols1d_lat will identify the lat/lon of each column
cols1d_itype_lunit will identify the landunit type of each column

An ncdump -h on the file provides global attributes that identify the pft, column, landunit type ids, e.g.,

:ltype_vegetated_or_bare_soil = 1 ;
:ltype_crop = 2 ;
:ltype_UNUSED = 3 ;
:ltype_landice = 4 ;
:ltype_deep_lake = 5 ;
:ltype_wetland = 6 ;
:ltype_urban_tbd = 7 ;
:ltype_urban_hd = 8 ;
:ltype_urban_md = 9 ;
 

jinmuluo

Jinmu Luo
Member
There will be variables in the history file output that will help. For example,

cols1d_lon and cols1d_lat will identify the lat/lon of each column
cols1d_itype_lunit will identify the landunit type of each column

An ncdump -h on the file provides global attributes that identify the pft, column, landunit type ids, e.g.,

:ltype_vegetated_or_bare_soil = 1 ;
:ltype_crop = 2 ;
:ltype_UNUSED = 3 ;
:ltype_landice = 4 ;
:ltype_deep_lake = 5 ;
:ltype_wetland = 6 ;
:ltype_urban_tbd = 7 ;
:ltype_urban_hd = 8 ;
:ltype_urban_md = 9 ;
Thanks!
 
Top