Skip to content
Snippets Groups Projects
Commit 6dffea2a authored by Philip.Rupp's avatar Philip.Rupp
Browse files

trying experiment with output and 2 chunks

parent ecbae495
No related branches found
No related tags found
No related merge requests found
Pipeline #19194 passed
...@@ -3,7 +3,7 @@ experiment: ...@@ -3,7 +3,7 @@ experiment:
# MEMBERS: "m[1-2]" # MEMBERS: "m[1-2]"
MEMBERS: "m1" MEMBERS: "m1"
CHUNKSIZEUNIT: hour CHUNKSIZEUNIT: hour
CHUNKSIZE: 1 CHUNKSIZE: 6
NUMCHUNKS: 2 NUMCHUNKS: 2
CHUNKINI: 0 CHUNKINI: 0
CALENDAR: standard CALENDAR: standard
\ No newline at end of file
...@@ -10,7 +10,7 @@ simulation: ...@@ -10,7 +10,7 @@ simulation:
atmosphere: "%HPCROOTDIR%/production_project/namelists/real-from-dwd-ana/icon_atmosphere.namelist" atmosphere: "%HPCROOTDIR%/production_project/namelists/real-from-dwd-ana/icon_atmosphere.namelist"
# List of output file names that will be copied (Wildcards * allowed) # List of output file names that will be copied (Wildcards * allowed)
output_file_names: "init_DOM01_ML_*.nc latbc_DOM01_ML_*.nc" output_file_names: "fields_3d_*.nc surface_fields_*.nc"
files_to_clean: "*.nc" files_to_clean: "*.nc"
initial_conditions: initial_conditions:
......
...@@ -44,7 +44,7 @@ ...@@ -44,7 +44,7 @@
&radiation_nml &radiation_nml
irad_o3=79, irad_o3=79,
irad_aero=6, irad_aero=6,
albedo_type=2, ! this would require t_2m climatology in external parameter file albedo_type=2, ! this requires t_2m climatology in external parameter file
vmr_co2=390.e-06, vmr_co2=390.e-06,
vmr_ch4=1800.e-09, vmr_ch4=1800.e-09,
vmr_n2o=322.0e-09, vmr_n2o=322.0e-09,
...@@ -133,24 +133,34 @@ ...@@ -133,24 +133,34 @@
nproma = 16 nproma = 16
/ /
! LATBC files, these files will be used as input for the next example.
&output_nml
file_interval = 'PT3600S'
output_start = '#OUTPUT_START#'
output_end = '#OUTPUT_END#'
output_filename = "latbc"
output_interval = 'PT3600S'
include_last = .true.
ml_varlist = 'u', 'v', 'w', 'theta_v', 'rho', 'qv', 'qc', 'qi', 'qr', 'qs', 'z_ifc'
/
! First Guess file ! output for analysis of simulation (surface fields)
&output_nml &output_nml
file_interval = 'PT3600S' output_interval = 'PT21600S'
output_start = '#OUTPUT_START#' steps_per_file = 1
output_end = '#OUTPUT_END#' filename_format = "surface_fields_<jfile>"
output_filename = "init" output_start = '#OUTPUT_START#'
output_interval = 'PT3600S' output_end = '#OUTPUT_END#'
include_last = .true. include_last = .true.
ml_varlist = 'group:dwd_fg_atm_vars', 'group:dwd_fg_sfc_vars' remap = 1 ! remap to regular lat/lon grid
/ reg_lat_def = -20.,1.0,90. ! start, increment, end latitude in degrees
reg_lon_def = -180.,1.0,179.0 ! start, increment, end longitude in degrees
ml_varlist = 't_2m','tmin_2m','tmax_2m','pres_sfc','pres_msl','u_10m','v_10m','tot_prec','tqc','tqi','tqv','snowfrac'
/
! output for analysis of simulation (on pressure levels)
&output_nml
output_interval = 'PT21600S'
steps_per_file = 1
filename_format = "fields_3d_<jfile>"
output_start = '#OUTPUT_START#'
output_end = '#OUTPUT_END#'
include_last = .true.
remap = 1 ! remap to regular lat/lon grid
reg_lat_def = -20.,1.0,90. ! start, increment, end latitude in degrees
reg_lon_def = -180.,1.0,179.0 ! start, increment, end longitude in degrees
pl_varlist = 'u','v','omega','geopot','temp'
p_levels = 100000,85000,75000,65000,60000, 55000,50000,47500,45000,42500,40000,37500, 35000,32500,30000,28000,26500, 25000,23500,22000, 21000,20000,19000,18000, 17000,16000, 15000,14000,13000,12000, 11000,10000,8500,7000,5500,4000,3000, 2500,2000,1500,1000, 700,500,300,200,150,100,70,50,30,20,10
/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment