@@ -55,9 +55,9 @@ SAM_EXPORT void SAM_Irradproc_IrradianceProcessor_day_aset(SAM_table ptr, double
55
55
});
56
56
}
57
57
58
- SAM_EXPORT void SAM_Irradproc_IrradianceProcessor_diffuse_aset (SAM_table ptr, double * arr, int length, SAM_error *err){
58
+ SAM_EXPORT void SAM_Irradproc_IrradianceProcessor_diff_aset (SAM_table ptr, double * arr, int length, SAM_error *err){
59
59
translateExceptions (err, [&]{
60
- ssc_data_set_array (ptr, " diffuse " , arr, length);
60
+ ssc_data_set_array (ptr, " diff " , arr, length);
61
61
});
62
62
}
63
63
@@ -73,9 +73,9 @@ SAM_EXPORT void SAM_Irradproc_IrradianceProcessor_gcr_nset(SAM_table ptr, double
73
73
});
74
74
}
75
75
76
- SAM_EXPORT void SAM_Irradproc_IrradianceProcessor_global_aset (SAM_table ptr, double * arr, int length, SAM_error *err){
76
+ SAM_EXPORT void SAM_Irradproc_IrradianceProcessor_glob_aset (SAM_table ptr, double * arr, int length, SAM_error *err){
77
77
translateExceptions (err, [&]{
78
- ssc_data_set_array (ptr, " global " , arr, length);
78
+ ssc_data_set_array (ptr, " glob " , arr, length);
79
79
});
80
80
}
81
81
@@ -232,12 +232,12 @@ SAM_EXPORT double* SAM_Irradproc_IrradianceProcessor_day_aget(SAM_table ptr, int
232
232
233
233
234
234
235
- SAM_EXPORT double * SAM_Irradproc_IrradianceProcessor_diffuse_aget (SAM_table ptr, int * length, SAM_error *err){
235
+ SAM_EXPORT double * SAM_Irradproc_IrradianceProcessor_diff_aget (SAM_table ptr, int * length, SAM_error *err){
236
236
double * result = nullptr ;
237
237
translateExceptions (err, [&]{
238
- result = ssc_data_get_array (ptr, " diffuse " , length);
238
+ result = ssc_data_get_array (ptr, " diff " , length);
239
239
if (!result)
240
- make_access_error (" SAM_Irradproc" , " diffuse " );
240
+ make_access_error (" SAM_Irradproc" , " diff " );
241
241
});
242
242
return result;
243
243
}
@@ -266,12 +266,12 @@ SAM_EXPORT double SAM_Irradproc_IrradianceProcessor_gcr_nget(SAM_table ptr, SAM_
266
266
267
267
268
268
269
- SAM_EXPORT double * SAM_Irradproc_IrradianceProcessor_global_aget (SAM_table ptr, int * length, SAM_error *err){
269
+ SAM_EXPORT double * SAM_Irradproc_IrradianceProcessor_glob_aget (SAM_table ptr, int * length, SAM_error *err){
270
270
double * result = nullptr ;
271
271
translateExceptions (err, [&]{
272
- result = ssc_data_get_array (ptr, " global " , length);
272
+ result = ssc_data_get_array (ptr, " glob " , length);
273
273
if (!result)
274
- make_access_error (" SAM_Irradproc" , " global " );
274
+ make_access_error (" SAM_Irradproc" , " glob " );
275
275
});
276
276
return result;
277
277
}
0 commit comments