diff --git a/3dfgat.yaml.j2 b/3dfgat.yaml.j2 index 40f6afd..662c94a 100644 --- a/3dfgat.yaml.j2 +++ b/3dfgat.yaml.j2 @@ -5,6 +5,8 @@ cost function: cost type: 3D-FGAT + jb evaluation: {{ jb_evaluation | default(false) }} + time window: begin: '{{window_begin}}' length: '{{window_length}}' @@ -118,3 +120,6 @@ test: float absolute tolerance: {{test_float_absolute_tolerance | default(0.0, true) }} integer tolerance: {{test_integer_tolerance | default(0, true) }} {% endif %} + +# Turn off the final J eval +final j evaluation: {{ final_j_evaluation | default(false) }} diff --git a/3dvar.yaml.j2 b/3dvar.yaml.j2 index a96483b..d07ad3e 100644 --- a/3dvar.yaml.j2 +++ b/3dvar.yaml.j2 @@ -5,6 +5,8 @@ cost function: cost type: 3D-Var + jb evaluation: {{ jb_evaluation | default(false) }} + time window: begin: '{{window_begin}}' length: '{{window_length}}' @@ -112,3 +114,6 @@ test: float absolute tolerance: {{test_float_absolute_tolerance | default(0.0, true) }} integer tolerance: {{test_integer_tolerance | default(0, true) }} {% endif %} + +# Turn off the final J eval +final j evaluation: {{ final_j_evaluation | default(false) }}