Skip to content
Snippets Groups Projects
Commit 1750c0c6 authored by Oriol Tintó's avatar Oriol Tintó
Browse files

Interpolating first-guess as well.

parent 24ab0ad2
No related branches found
No related tags found
No related merge requests found
Pipeline #19187 passed
...@@ -25,6 +25,7 @@ cd ${MEMBER_DIR} || exit ...@@ -25,6 +25,7 @@ cd ${MEMBER_DIR} || exit
# Get analysis file path # Get analysis file path
ANALYSIS_FILE=$(find . -name "igaf*.m*.grb" -print -quit) ANALYSIS_FILE=$(find . -name "igaf*.m*.grb" -print -quit)
FG_FILE=$(find . -name "igfff00030000.m*.grb" -print -quit)
# Load spack # Load spack
...@@ -56,7 +57,8 @@ integrate_sst_to_extpar "${INTERPOLATED_SST}" "${EXTERNAL_PARAMETERS_FILE}" ...@@ -56,7 +57,8 @@ integrate_sst_to_extpar "${INTERPOLATED_SST}" "${EXTERNAL_PARAMETERS_FILE}"
# Interpolate analysis # Interpolate analysis
interpolate_analysis "icon_grid_0024_R02B06_G.nc" "${ANALYSIS_FILE}" "${DESTINATION_GRID}" interpolate_initial_conditions "icon_grid_0024_R02B06_G.nc" "${ANALYSIS_FILE}" "${DESTINATION_GRID}" "interpolated_analysis.nc"
interpolate_initial_conditions "icon_grid_0024_R02B06_G.nc" "${FG}" "${DESTINATION_GRID}" "first_guess.nc"
integrate_sst_to_analysis "${INTERPOLATED_SST}" integrate_sst_to_analysis "${INTERPOLATED_SST}"
...@@ -110,21 +110,22 @@ END ...@@ -110,21 +110,22 @@ END
fi fi
} }
function interpolate_analysis() { function interpolate_initial_conditions() {
local INPUT_GRID="$1" local INPUT_GRID="$1"
local ANALYSIS_FILE="$2" local IC_FILE="$2"
local OUTPUT_GRID="$3" local OUTPUT_GRID="$3"
local OUTPUT_FILENAME="$4"
echo "Converting analysis to netcdf" echo "Interpolating ${IC_FILE} to destination grid"
cat >remap.nml <<END cat >remap.nml <<END
&remap_nml &remap_nml
in_filename = "${ANALYSIS_FILE}" in_filename = "${IC_FILE}"
in_grid_filename = "${INPUT_GRID}" in_grid_filename = "${INPUT_GRID}"
in_type = 2 in_type = 2
out_grid_filename = "${OUTPUT_GRID}" out_grid_filename = "${OUTPUT_GRID}"
out_filename = "interpolated_analysis.nc" out_filename = "${OUTPUT_FILENAME}
out_type = 2 out_type = 2
out_filetype = 4 out_filetype = 4
/ /
...@@ -133,7 +134,7 @@ END ...@@ -133,7 +134,7 @@ END
cat <<END >extend_remap_namelist.py cat <<END >extend_remap_namelist.py
from enstools.io import read from enstools.io import read
with read("${ANALYSIS_FILE}") as ds, open('remap.nml', 'a') as file: with read("${IC_FILE}") as ds, open('remap.nml', 'a') as file:
all_vars = list(ds.data_vars) all_vars = list(ds.data_vars)
remap_vars = [] remap_vars = []
for var in all_vars: for var in all_vars:
......
...@@ -25,9 +25,10 @@ MASTER_NAMELIST_PATH = Path("%simulation.namelist_paths.master%") ...@@ -25,9 +25,10 @@ MASTER_NAMELIST_PATH = Path("%simulation.namelist_paths.master%")
analysis_filename = "analysis.nc" analysis_filename = "analysis.nc"
first_guess_filename = (RUNDIR / "igfff00030000.m*.grb").resolve() # first_guess_filename = (RUNDIR / "igfff00030000.m*.grb").resolve()
first_guess_filename = first_guess_filename.parent.glob(first_guess_filename.name).__next__() # first_guess_filename = first_guess_filename.parent.glob(first_guess_filename.name).__next__()
first_guess_filename = first_guess_filename.name # first_guess_filename = first_guess_filename.name
first_guess_filename = "first_guess.nc"
# Example of date format "2018-06-01T00:00:00Z" # Example of date format "2018-06-01T00:00:00Z"
......
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