Skip to content

Commit 2d0968c

Browse files
authored
Merge pull request #1382 from NatLabRockies/patch
Patch to develop 3/31/26
2 parents 6caf2ec + fbce574 commit 2d0968c

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

shared/lib_irradproc.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -89,7 +89,7 @@ void solarpos(int year, int month, int day, int hour, double minute, double lat,
8989
/** @defgroup solarpos_spa Solar Position Algorithm group/
9090
* The functions in this group are used to calculate the sun's position at any given timestep
9191
* based on the Solar Position Algorithm reported by Reda and Andreas in NREL/TP-560-34302, 2008.
92-
* The functions used in this implementation were taken from a C code implementation provided at https://midcdmz.nrel.gov/spa/
92+
* The functions used in this implementation were taken from a C code implementation provided at https://midcdmz.nlr.gov/spa/
9393
* @{
9494
*/
9595
/**

solarpilot/interop.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2491,7 +2491,7 @@ void grid_emulator_base::AddRow(int row, std::string label, std::string units, d
24912491
//Row adding method for simple performance runs
24922492

24932493
if ((GetNumberCols() < 6) || (GetNumberRows() < row + 1))
2494-
throw spexception("Sorry! Results table incorrectly formatted. Please contact solarpilot.support@nrel.gov for help.");
2494+
throw spexception("Sorry! Results table incorrectly formatted. Please contact solarpilot.support@nlr.gov for help.");
24952495

24962496
bool is_currency = false;
24972497
if (units.find("$") != std::string::npos) is_currency = true;

ssc/cmod_pvsamv1.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3298,7 +3298,7 @@ void cm_pvsamv1::exec()
32983298

32993299
// calculate system performance factor
33003300
// reference: (http://files.sma.de/dl/7680/Perfratio-UEN100810.pdf)
3301-
// additional reference: (http://www.nrel.gov/docs/fy05osti/37358.pdf)
3301+
// additional reference: (http://www.nlr.gov/docs/fy05osti/37358.pdf)
33023302
// PR = net_ac (kWh) / ( total input radiation (kWh) * stc efficiency (%) )
33033303
// bug fix 6/15/15 jmf: total input radiation for PR should NOT including shading or soiling, hence use Nominal value.
33043304
assign("performance_ratio", var_data((ssc_number_t)(ac_net / (nom_rad * mod_eff / 100.0))));

test/input_cases/pvyield_common_data.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1255,7 +1255,7 @@ void pvyield_user_support_80603_meteo(ssc_data_t& data)
12551255
ssc_data_set_number(data, "mlm_AM_c_lp3", 0);
12561256
ssc_data_set_number(data, "mlm_AM_c_lp4", 0);
12571257
ssc_data_set_number(data, "mlm_AM_c_lp5", 0);
1258-
// user support issue 80603 https://sam.nrel.gov/node/80603
1258+
// user support issue 80603 https://sam.nlr.gov/node/80603
12591259
ssc_data_set_number(data, "mlm_IAM_mode", 3);
12601260
ssc_data_set_number(data, "mlm_IAM_c_as", 0.04);
12611261
ssc_data_set_number(data, "mlm_IAM_c_sa0", 0);
@@ -1696,7 +1696,7 @@ void pvyield_user_support_80603_AZ(ssc_data_t& data)
16961696
ssc_data_set_number(data, "mlm_AM_c_lp3", 0);
16971697
ssc_data_set_number(data, "mlm_AM_c_lp4", 0);
16981698
ssc_data_set_number(data, "mlm_AM_c_lp5", 0);
1699-
// user support issue 80603 https://sam.nrel.gov/node/80603
1699+
// user support issue 80603 https://sam.nlr.gov/node/80603
17001700
ssc_data_set_number(data, "mlm_IAM_mode", 3);
17011701
ssc_data_set_number(data, "mlm_IAM_c_as", 0.04);
17021702
ssc_data_set_number(data, "mlm_IAM_c_sa0", 0);

0 commit comments

Comments
 (0)