Skip to content

Commit

Permalink
setting default
Browse files Browse the repository at this point in the history
  • Loading branch information
jdub authored and jdub committed Feb 5, 2023
1 parent 014dc67 commit fe3895f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/libs/pestpp_common/EnsembleMethodUtils.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -6447,7 +6447,7 @@ void EnsembleMethod::check_and_fill_phi_factors(map<string,vector<string>>& grou
message(2, ss.str());
if (pf.second <= 0.0) {
ss.str("");
ss << "adjust_weights(): phi factor '" << pf.first << "' less or equal 0.0 - this not allowed";
ss << "adjust_weights(): phi factor '" << pf.first << "' less or equal 0.0 - this is not allowed";
throw_em_error(ss.str());
}
}
Expand Down
1 change: 1 addition & 0 deletions src/libs/pestpp_common/pest_data_structs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -1936,6 +1936,7 @@ void PestppOptions::set_defaults()
set_ensemble_output_precision(6);
set_ies_localizer_forgive_missing(false);
set_ies_phi_fractions_files("");
set_ies_phi_factors_by_real(false);

// DA parameters
//set_da_use_ies(false);
Expand Down

0 comments on commit fe3895f

Please sign in to comment.