Skip to content

Commit

Permalink
Merge pull request #276 from GEOS-ESM/feature/sdrabenh/m21c_preops_up2
Browse files Browse the repository at this point in the history
Updates for M21C
  • Loading branch information
rtodling committed May 22, 2024
2 parents 1868762 + f746ad4 commit d1c47f9
Show file tree
Hide file tree
Showing 4 changed files with 15 additions and 6 deletions.
6 changes: 3 additions & 3 deletions components.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ GEOSana_GridComp:
GEOSgcm_GridComp:
local: ./src/Components/@GEOSgcm_GridComp
remote: ../GEOSgcm_GridComp.git
tag: v1.18.1+R21C_v1.0.0
tag: v1.18.1+R21C_v1.0.1
sparse: ./config/GEOSgcm_GridComp.sparse
develop: R21C

Expand Down Expand Up @@ -107,7 +107,7 @@ geos-chem:
GOCART:
local: ./src/Components/@GEOSgcm_GridComp/GEOSagcm_GridComp/GEOSphysics_GridComp/@GEOSchem_GridComp/@GOCART
remote: ../GOCART.git
tag: v2.1.2+R21C_v1.0.1
tag: v2.1.2+R21C_v1.0.2
develop: R21C

QuickChem:
Expand Down Expand Up @@ -182,7 +182,7 @@ RRTMGP:
GEOSgcm_App:
local: ./src/Applications/@GEOSgcm_App
remote: ../GEOSgcm_App.git
tag: v1.9.6+R21C_v1.0.1
tag: v1.9.6+R21C_v1.0.2
develop: R21C

Ocean-LETKF:
Expand Down
4 changes: 3 additions & 1 deletion src/Applications/GEOSdas_App/edhist.pl
Original file line number Diff line number Diff line change
Expand Up @@ -1127,7 +1127,9 @@ sub plot_edit {
foreach $name (@topList) {
$name =~ s/_NCKS$//;
next unless $name =~ m/Cp$/ or $name =~ m/Np$/ or $name =~ m/Nx$/
or $name =~ m/slv$/ or $name =~ m/p42$/;
or $name =~ m/slv$/ or $name =~ m/p42$/
or $name =~ m/p48$/ or $name =~ m/v72$/
or $name =~ m/z17$/ or $name =~ m/v73$/;
push @new, $name;
}
@topList = @new;
Expand Down
4 changes: 3 additions & 1 deletion src/Applications/GEOSdas_App/write_monthly_rc_arc.pl
Original file line number Diff line number Diff line change
Expand Up @@ -321,7 +321,9 @@ sub means_type {
sub plots_type {
my $name = shift;
return unless means_type($name);
return unless $name =~ m/Cp$/ or $name =~ m/Np$/ or $name =~ m/Nx$/;
# return unless $name =~ m/Cp$/ or $name =~ m/Np$/ or $name =~ m/Nx$/;
return unless $name =~ m/Cp$/ or $name =~ m/Np$/ or $name =~ m/Nx$/
or $name =~ m/p48$/ or $name =~ m/glo_L/;
return 1;
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -246,7 +246,12 @@ sub init {
$obsv_nx = 4; $obsv_ny = 8;
$stat_nx = 2; $stat_ny = 2;
} elsif ($nodename eq "cas") {
die "Sorry this node/resolution not set yet, aborting \n";
$enkf_cpus = 368;
$agcm_nx = 6; $agcm_ny = 24;
$miau_nx = 2; $miau_ny = 12;
$obsv_nx = 4; $obsv_ny = 24;
$stat_nx = 2; $stat_ny = 24;
# die "Sorry this node/resolution not set yet, aborting \n";
# $agcm_ncpus_per_node = 46;
} else {
die "Unknown node name, aborting \n";
Expand Down

0 comments on commit d1c47f9

Please sign in to comment.