Another bug in mixing gas phase.

git-svn-id: svn://136.177.114.72/svn_GW/phreeqc3/trunk@8925 1feff8c3-07ed-0310-ac33-dd36852eb9cd
This commit is contained in:
David L Parkhurst 2014-08-18 16:32:54 +00:00
parent e62cc9cba3
commit 8945b19b89

View File

@ -157,7 +157,7 @@ cxxGasPhase::cxxGasPhase(std::map < int, cxxGasPhase > &entity_map,
this->total_p += entity_ptr->total_p * it->second / sum_fractions;
this->total_moles = entity_ptr->total_moles * it->second;
this->volume = entity_ptr->volume * it->second;
this->v_m = entity_ptr->v_m * it->second;
this->v_m = entity_ptr->v_m * it->second / sum_fractions;
this->pr_in = entity_ptr->pr_in;
this->temperature = entity_ptr->temperature;
first = false;