Skip to content

Commit

Permalink
Continued OM cost calcs
Browse files Browse the repository at this point in the history
  • Loading branch information
mjprilliman committed Aug 8, 2023
1 parent 019fe35 commit 49ebe32
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion ssc/cmod_geothermal_om_costs.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -301,7 +301,12 @@ class cm_geothermal_costs : public compute_module
double flow_rate = as_double("well_flow_rate");
double chemical_inhibitor_cost = 0;
if (conversion_type == 1) chemical_inhibitor_cost = 22.5;
double chemical_costs = flow_rate * as_double("geotherm.cost.prod_per_well") * 3600 * 24 * 365 * 0.95 *
double chemical_costs = flow_rate * as_double("geotherm.cost.prod_per_well") * 3600 * 24 * 365 * 0.95 * chemical_inhibitor_cost / 1000000;

double makeup_water = water_loss * water_cost;
double pump_om = 0; //Too complicated
doulbe field_labor_om =



if (conversion_type == 0) {
Expand Down

0 comments on commit 49ebe32

Please sign in to comment.