Guest User

Untitled

a guest
Oct 11th, 2018
115
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.91 KB | None | 0 0
  1. Class (catchment):
  2. name = "unknown_name"
  3. Number_of_SubAreas = "0"
  4.  
  5. Class (SubArea):
  6. SubName = "Unknown_Name"
  7. Area = "0.0"
  8. PercImperv = "0.0"
  9. Has_Watercourse = "Unknown"
  10. Has_Storage = "Unknown"
  11. Flows_to_Downstream = "Unknown"
  12.  
  13. def Route_RUnoff():
  14. """
  15. Generate runoff from the Sub Area
  16. """
  17.  
  18. Class (Watercourse):
  19. SubName = "Unknown_Name"
  20. WC_Label = "Unknown"
  21. Length = "0.0"
  22. Slope = "0.0"
  23.  
  24. def ROute_Watercourse():
  25. """
  26. Route the flow along the Watercourse
  27. """
  28.  
  29. Class (Storage):
  30. SubName = "Unknown_Name"
  31. Volume = "0.0"
  32. Flows_to_SubArea = "Unknown"
  33.  
  34. def Route-Storage()
  35. """
  36. Route the FLow through a Storage
  37. """
Add Comment
Please, Sign In to add comment