Skip to content

Commit fbce574

Browse files
authored
Merge pull request #1381 from NatLabRockies/2156_pt1_nrel_dot_gov
Comment and help address changes for nlr.gov vs nrel.gov
2 parents 9be2086 + 0f38569 commit fbce574

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
@@ -3279,7 +3279,7 @@ void cm_pvsamv1::exec()
32793279

32803280
// calculate system performance factor
32813281
// reference: (http://files.sma.de/dl/7680/Perfratio-UEN100810.pdf)
3282-
// additional reference: (http://www.nrel.gov/docs/fy05osti/37358.pdf)
3282+
// additional reference: (http://www.nlr.gov/docs/fy05osti/37358.pdf)
32833283
// PR = net_ac (kWh) / ( total input radiation (kWh) * stc efficiency (%) )
32843284
// bug fix 6/15/15 jmf: total input radiation for PR should NOT including shading or soiling, hence use Nominal value.
32853285
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
@@ -1246,7 +1246,7 @@ void pvyield_user_support_80603_meteo(ssc_data_t& data)
12461246
ssc_data_set_number(data, "mlm_AM_c_lp3", 0);
12471247
ssc_data_set_number(data, "mlm_AM_c_lp4", 0);
12481248
ssc_data_set_number(data, "mlm_AM_c_lp5", 0);
1249-
// user support issue 80603 https://sam.nrel.gov/node/80603
1249+
// user support issue 80603 https://sam.nlr.gov/node/80603
12501250
ssc_data_set_number(data, "mlm_IAM_mode", 3);
12511251
ssc_data_set_number(data, "mlm_IAM_c_as", 0.04);
12521252
ssc_data_set_number(data, "mlm_IAM_c_sa0", 0);
@@ -1684,7 +1684,7 @@ void pvyield_user_support_80603_AZ(ssc_data_t& data)
16841684
ssc_data_set_number(data, "mlm_AM_c_lp3", 0);
16851685
ssc_data_set_number(data, "mlm_AM_c_lp4", 0);
16861686
ssc_data_set_number(data, "mlm_AM_c_lp5", 0);
1687-
// user support issue 80603 https://sam.nrel.gov/node/80603
1687+
// user support issue 80603 https://sam.nlr.gov/node/80603
16881688
ssc_data_set_number(data, "mlm_IAM_mode", 3);
16891689
ssc_data_set_number(data, "mlm_IAM_c_as", 0.04);
16901690
ssc_data_set_number(data, "mlm_IAM_c_sa0", 0);

0 commit comments

Comments
 (0)