@@ -1725,7 +1725,7 @@ def run_model_from_poa(self, data):
17251725 >>> mount = FixedMount(surface_tilt=30, surface_azimuth=180)
17261726 >>> array = Array(mount=mount, module_parameters={'pdc0': 300, 'gamma_pdc': -0.004})
17271727 >>> system = PVSystem(arrays=[array],inverter_parameters={'pdc0': 300})
1728- >>> mc = ModelChain(system, location,dc_model="pvwatts",ac_model="pvwatts")
1728+ >>> mc = ModelChain(system, location,dc_model="pvwatts",ac_model="pvwatts", aoi_model="no_loss", spectral_model="no_loss" )
17291729 >>> poa = pd.DataFrame({
17301730 ... 'poa_global': [900, 850],
17311731 ... 'poa_direct': [600, 560],
@@ -1743,7 +1743,7 @@ def run_model_from_poa(self, data):
17431743 >>> array1 = Array(mount=mount1, module_parameters={'pdc0': 300, 'gamma_pdc': -0.004})
17441744 >>> array2 = Array(mount=mount2, module_parameters={'pdc0': 300, 'gamma_pdc': -0.004})
17451745 >>> system = PVSystem(arrays=[array1, array2],inverter_parameters={'pdc0': 300})
1746- >>> mc = ModelChain(system, location,dc_model="pvwatts",ac_model="pvwatts")
1746+ >>> mc = ModelChain(system, location,dc_model="pvwatts",ac_model="pvwatts", aoi_model="no_loss", spectral_model="no_loss" )
17471747 >>> poa1 = pd.DataFrame({
17481748 ... 'poa_global': [900, 880],
17491749 ... 'poa_direct': [600, 580],
@@ -1855,7 +1855,7 @@ def run_model_from_effective_irradiance(self, data):
18551855 >>> mount = FixedMount(surface_tilt=30, surface_azimuth=180)
18561856 >>> array = Array(mount=mount,module_parameters={'pdc0': 300, 'gamma_pdc': -0.004})
18571857 >>> system = PVSystem(arrays=[array],inverter_parameters={'pdc0': 300})
1858- >>> mc = ModelChain(system, location,dc_model="pvwatts",ac_model="pvwatts")
1858+ >>> mc = ModelChain(system, location,dc_model="pvwatts",ac_model="pvwatts", aoi_model="no_loss", spectral_model="no_loss" )
18591859 >>>
18601860 >>> eff = pd.DataFrame({
18611861 ... 'effective_irradiance': [900, 920],
@@ -1874,7 +1874,7 @@ def run_model_from_effective_irradiance(self, data):
18741874 >>> array1 = Array(mount=mount1, module_parameters={'pdc0': 300, 'gamma_pdc': -0.004})
18751875 >>> array2 = Array(mount=mount2, module_parameters={'pdc0': 300, 'gamma_pdc': -0.004})
18761876 >>> system = PVSystem(arrays=[array1, array2],inverter_parameters={'pdc0': 300})
1877- >>> mc = ModelChain(system, location,dc_model="pvwatts",ac_model="pvwatts")
1877+ >>> mc = ModelChain(system, location,dc_model="pvwatts",ac_model="pvwatts", aoi_model="no_loss", spectral_model="no_loss" )
18781878 >>> eff1 = pd.DataFrame({
18791879 ... 'effective_irradiance': [900, 920],
18801880 ... 'temp_air': [25, 24],
0 commit comments