Prado EFO PVA
general.py
Go to the documentation of this file.
1 # -*- coding: utf-8 -*-
2 """
3 Created on Wed May 6 12:13:23 2020
4 
5 @author: cd
6 """
7 
8 
9 class Constants:
10  def __init__(self, time):
11  # Assumes and hourly time step
12  self.cfs2afcfs2af = 1.98347109902*time.nHrs/24
13  self.af2cfsaf2cfs = 0.50416666040/time.nHrs*24
14 
15 
16 
17 
def __init__(self, time)
Definition: general.py:10