You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Right now, for an annual simulation the result are returned as an array. There needs to be a way through which it is possible to map a specific row of the results to a timestep (point in time)
For example, for the code snippet below....
# Instantiate a Two Phase Run
workflow2=methods.TwoPhaseMethod(config=config)
# Set up the matrices for the two phase run
workflow2.generate_matrices()
# Run the simulation and return a numpy array.
rsults = workflow2.calculate_sensor_from_wea('Perimeter_bot_ZN_1_Perimeter_bot_ZN_1_Floor')
...the results are returned as a dataframe below:
Currently, it is not possible to know which row/column of the above dataframe corresponds to which timestep.
The text was updated successfully, but these errors were encountered:
Right now, for an annual simulation the result are returned as an array. There needs to be a way through which it is possible to map a specific row of the results to a timestep (point in time)
For example, for the code snippet below....
...the results are returned as a dataframe below:
Currently, it is not possible to know which row/column of the above dataframe corresponds to which timestep.
The text was updated successfully, but these errors were encountered: