Summary
Is it possible to create the full report type rpt file with WNTR? How do I implement this in the code below?
Example
Below I have added a simple simulation code. How do I add it to create the .rpt file for a full report?
From what I understand, this code generates the status report.
import wntr
import os
inp_file = os.path.join(os.path.dirname(__file__), 'Net1.inp')
wn = wntr.network.WaterNetworkModel(inp_file)
sim = wntr.sim.EpanetSimulator(wn)
results = sim.run_sim()