Skip to content

Commit

Permalink
update initial guess to avoid overflow in hybrj
Browse files Browse the repository at this point in the history
  • Loading branch information
zhichen3 committed Jul 14, 2024
1 parent a24db93 commit 89c3db8
Show file tree
Hide file tree
Showing 2 changed files with 52 additions and 52 deletions.
4 changes: 2 additions & 2 deletions unit_test/test_nse_net/make_table/burn_cell.H
Original file line number Diff line number Diff line change
Expand Up @@ -38,8 +38,8 @@ void burn_cell_c()
state.y_e = Ye;

if (state.y_e > 0.52_rt){
state.mu_p = -4.0_rt;
state.mu_n = -14.0_rt;
state.mu_p = -5.0_rt;
state.mu_n = -12.0_rt;
}
else if (state.y_e > 0.48_rt){
state.mu_p = -8.0_rt;
Expand Down
Loading

0 comments on commit 89c3db8

Please sign in to comment.