Skip to content

Commit

Permalink
Hand-resolve merge conflicts with feature/aelakkra/m21c_preops_up2
Browse files Browse the repository at this point in the history
  • Loading branch information
sdrabenh committed May 17, 2024
2 parents 1868762 + a08a306 commit 89c73a2
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 3 deletions.
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 89c73a2

Please sign in to comment.