From 89554fcdeb23b6d0d3d6a5a10e2318e2dec9f149 Mon Sep 17 00:00:00 2001 From: Paul Gilman Date: Tue, 29 Oct 2024 08:21:18 -0700 Subject: [PATCH] Fix pvwatts losses label (#1229) * Fix pvwatts losses label * Fix singleowner PPA revenue TOD label typo --------- Co-authored-by: Matt Prilliman <54449384+mjprilliman@users.noreply.github.com> --- ssc/cmod_pvwattsv8.cpp | 2 +- ssc/cmod_singleowner.cpp | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/ssc/cmod_pvwattsv8.cpp b/ssc/cmod_pvwattsv8.cpp index 5a357b1ac..667370150 100644 --- a/ssc/cmod_pvwattsv8.cpp +++ b/ssc/cmod_pvwattsv8.cpp @@ -143,7 +143,7 @@ static var_info _cm_vtab_pvwattsv8[] = { { SSC_INPUT, SSC_NUMBER, "rotlim", "Tracker rotation angle limit", "degrees", "", "System Design", "?=45.0", "", "" }, { SSC_INPUT, SSC_ARRAY, "soiling", "Soiling loss", "%", "", "System Design", "?", "", "" }, - { SSC_INPUT, SSC_NUMBER, "losses", "Other DC losses", "%", "total system losses", "System Design", "*", "MIN=-5,MAX=99", "" }, + { SSC_INPUT, SSC_NUMBER, "losses", "DC system losses", "%", "total system losses", "System Design", "*", "MIN=-5,MAX=99", "" }, { SSC_INPUT, SSC_NUMBER, "enable_wind_stow", "Enable tracker stow at high wind speeds", "0/1", "", "System Design", "?=0", "BOOLEAN", "" }, { SSC_INPUT, SSC_NUMBER, "stow_wspd", "Tracker stow wind speed threshold", "m/s", "", "System Design", "?=10", "", "" }, diff --git a/ssc/cmod_singleowner.cpp b/ssc/cmod_singleowner.cpp index 879ecbf93..121e436f2 100644 --- a/ssc/cmod_singleowner.cpp +++ b/ssc/cmod_singleowner.cpp @@ -125,8 +125,8 @@ static var_info _cm_vtab_singleowner[] = { { SSC_OUTPUT, SSC_ARRAY, "cf_revenue_dispatch9", "PPA revenue by year for TOD period 9", "$", "", "Cash Flow Revenue by Month and TOD Period", "ppa_multiplier_model=0", "LENGTH_EQUAL=cf_length", "" }, { SSC_OUTPUT, SSC_NUMBER, "firstyear_revenue_dispatch1", "PPA revenue in Year 1 TOD period 1", "$", "", "Cash Flow Revenue by Month and TOD Period", "ppa_multiplier_model=0", "", "" }, - { SSC_OUTPUT, SSC_NUMBER, "firstyear_revenue_dispatch2", "PPA revenue from in Year 1 TOD period 2", "$", "", "Cash Flow Revenue by Month and TOD Period", "ppa_multiplier_model=0", "", "" }, - { SSC_OUTPUT, SSC_NUMBER, "firstyear_revenue_dispatch3", "PPA revenue from in Year 1 TOD period 3", "$", "", "Cash Flow Revenue by Month and TOD Period", "ppa_multiplier_model=0", "", "" }, + { SSC_OUTPUT, SSC_NUMBER, "firstyear_revenue_dispatch2", "PPA revenue in Year 1 TOD period 2", "$", "", "Cash Flow Revenue by Month and TOD Period", "ppa_multiplier_model=0", "", "" }, + { SSC_OUTPUT, SSC_NUMBER, "firstyear_revenue_dispatch3", "PPA revenue in Year 1 TOD period 3", "$", "", "Cash Flow Revenue by Month and TOD Period", "ppa_multiplier_model=0", "", "" }, { SSC_OUTPUT, SSC_NUMBER, "firstyear_revenue_dispatch4", "PPA revenue in Year 1 TOD period 4", "$", "", "Cash Flow Revenue by Month and TOD Period", "ppa_multiplier_model=0", "", "" }, { SSC_OUTPUT, SSC_NUMBER, "firstyear_revenue_dispatch5", "PPA revenue in Year 1 TOD period 5", "$", "", "Cash Flow Revenue by Month and TOD Period", "ppa_multiplier_model=0", "", "" }, { SSC_OUTPUT, SSC_NUMBER, "firstyear_revenue_dispatch6", "PPA revenue in Year 1 TOD period 6", "$", "", "Cash Flow Revenue by Month and TOD Period", "ppa_multiplier_model=0", "", "" },