Skip to content

Commit 23d3727

Browse files
committed
remove unused mc stuff
1 parent 0002bd0 commit 23d3727

File tree

1 file changed

+0
-27
lines changed

1 file changed

+0
-27
lines changed

pvlib/modelchain.py

Lines changed: 0 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -321,30 +321,3 @@ def run_model(self, times, irradiance=None, weather=None):
321321
self.ac = self.system.snlinverter(self.dc['v_mp'], self.dc['p_mp'])
322322

323323
return self.dc, self.ac
324-
325-
def model_system(self):
326-
"""
327-
Model the system?
328-
329-
I'm just copy/pasting example code...
330-
331-
Returns
332-
-------
333-
???
334-
"""
335-
336-
final_output = self.run_model()
337-
input = self.prettify_input()
338-
modeling_steps = self.get_modeling_steps()
339-
340-
341-
class MoreSpecificModelChain(ModelChain):
342-
"""
343-
Something more specific.
344-
"""
345-
def __init__(self, *args, **kwargs):
346-
super(MoreSpecificModelChain, self).__init__(**kwargs)
347-
348-
def run_model(self):
349-
# overrides the parent ModelChain method
350-
pass

0 commit comments

Comments
 (0)