Had a problem with mismatch between mass_water (1e-6) and

total_o (~55.5) from Colman phast run.
Now set mass_water based on total_o.

git-svn-id: svn://136.177.114.72/svn_GW/phreeqc3/trunk@11937 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
David L Parkhurst 2016-11-09 21:31:17 +00:00
parent 53fade44b5
commit 52ea727147

View File

@ -1103,6 +1103,7 @@ cxxSolution::Update(LDBLE h_tot, LDBLE o_tot, LDBLE charge, const cxxNameDouble
this->total_h = h_tot;
this->total_o = o_tot;
this->cb = charge;
this->mass_water = o_tot / 55.5;
// Don`t bother to update activities?
this->Update(const_nd);