Skip to content

Commit

Permalink
Update variable names in cost cmod
Browse files Browse the repository at this point in the history
  • Loading branch information
mjprilliman committed Jan 13, 2025
1 parent 6db72bd commit 3cfd0fa
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions ssc/cmod_geothermal_costs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -422,7 +422,7 @@ class cm_geothermal_costs : public compute_module

}
}
double inj_wells_drilled = as_double("geotherm.cost.inj_wells_drilled");
double inj_wells_drilled = as_double("num_wells_getem_inj_drilled");
double inj_total_cost = inj_wells_drilled * inj_well_cost;
assign("inj_total_cost", inj_total_cost);

Expand Down Expand Up @@ -499,7 +499,7 @@ class cm_geothermal_costs : public compute_module
}
}

double prod_wells_drilled = as_double("geotherm.cost.prod_wells_drilled");
double prod_wells_drilled = as_double("num_wells_getem_prod_drilled");
double prod_total_cost = prod_wells_drilled * prod_well_cost;
assign("prod_total_cost", prod_total_cost);
// Stimulation costs
Expand Down

0 comments on commit 3cfd0fa

Please sign in to comment.