@@ -159,7 +159,6 @@ std::string CohortLookup::calparbgc2str() {
159159 s << this ->max_ponding_s << " // summermaxponding: \n :" ;
160160 s << this ->max_ponding_w << " // wintermaxponding: \n :" ;
161161 s << this ->inflow_factor << " // inflowfactor: \n :" ;
162- s << this ->rhq10 << " // rhq10:\n " ;
163162 s << this ->s2dfraction << " // s2dfraction \n :" ;
164163 s << this ->d2mfraction << " // d2mfraction \n :" ;
165164 s << this ->kdcrawc_ch4 << " // kdcrawc_ch4:\n " ;
@@ -174,7 +173,6 @@ std::string CohortLookup::calparbgc2str() {
174173 s << this ->oxidTref_ch4 << " // oxidTref_ch4:\n " ;
175174 s << this ->oxidkm_ch4 << " // oxidkm_ch4:\n " ;
176175 s << this ->oxidVmax_ch4 << " // oxidVmax_ch4:\n " ;
177- s << this ->rhmoist << " // rhmoist:\n " ;
178176 return s.str ();
179177}
180178
@@ -184,7 +182,7 @@ void CohortLookup::assignBgcCalpar(std::string & dircmt) {
184182
185183 // get a list of data for the cmt number
186184 std::list<std::string> l = temutil::parse_parameter_file (
187- dircmt + " cmt_calparbgc.txt" , temutil::cmtcode2num (this ->cmtcode ), 37
185+ dircmt + " cmt_calparbgc.txt" , temutil::cmtcode2num (this ->cmtcode ), 35
188186 );
189187
190188 // pop each line off the front of the list
@@ -211,7 +209,6 @@ void CohortLookup::assignBgcCalpar(std::string & dircmt) {
211209 temutil::pfll2data (l, max_ponding_s);
212210 temutil::pfll2data (l, max_ponding_w);
213211 temutil::pfll2data (l, inflow_factor);
214- temutil::pfll2data (l, rhq10);
215212 temutil::pfll2data (l, s2dfraction);
216213 temutil::pfll2data (l, d2mfraction);
217214
@@ -231,8 +228,6 @@ void CohortLookup::assignBgcCalpar(std::string & dircmt) {
231228
232229 temutil::pfll2data (l, oxidkm_ch4);
233230 temutil::pfll2data (l, oxidVmax_ch4);
234-
235- temutil::pfll2data (l, rhmoist);
236231}
237232
238233/* * Assign "veg dimension?" from parameter file. */
0 commit comments