Skip to content
Snippets Groups Projects
Commit 95bb48d6 authored by Norbert Grunwald's avatar Norbert Grunwald
Browse files

fixed bug in dValue computation

parent d4b24cc6
No related branches found
No related tags found
No related merge requests found
...@@ -97,7 +97,7 @@ PropertyDataType RelPermUdell::dValue( ...@@ -97,7 +97,7 @@ PropertyDataType RelPermUdell::dValue(
auto const dk_rel_LRdse = 3. * s * s; auto const dk_rel_LRdse = 3. * s * s;
auto const dk_rel_LRdsL = dk_rel_LRdse * d_se_d_sL; auto const dk_rel_LRdsL = dk_rel_LRdse * d_se_d_sL;
auto const dk_rel_GRdse = 3. * (1. - s) * (1. - s); auto const dk_rel_GRdse = -3. * (1. - s) * (1. - s);
auto const dk_rel_GRdsL = dk_rel_GRdse * d_se_d_sL; auto const dk_rel_GRdsL = dk_rel_GRdse * d_se_d_sL;
return Eigen::Vector2d{dk_rel_LRdsL, dk_rel_GRdsL}; return Eigen::Vector2d{dk_rel_LRdsL, dk_rel_GRdsL};
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment