PageRenderTime 27ms CodeModel.GetById 1ms RepoModel.GetById 0ms app.codeStats 0ms

/CIM15/IEC61970/Generation/GenerationDynamics/Supercritical.py

https://github.com/rwl/PyCIM
Python | 39 lines | 15 code | 3 blank | 21 comment | 0 complexity | 5c19643336463ab834a280373c3f42b7 MD5 | raw file
  1. # Copyright (C) 2010-2011 Richard Lincoln
  2. #
  3. # Permission is hereby granted, free of charge, to any person obtaining a copy
  4. # of this software and associated documentation files (the "Software"), to
  5. # deal in the Software without restriction, including without limitation the
  6. # rights to use, copy, modify, merge, publish, distribute, sublicense, and/or
  7. # sell copies of the Software, and to permit persons to whom the Software is
  8. # furnished to do so, subject to the following conditions:
  9. #
  10. # The above copyright notice and this permission notice shall be included in
  11. # all copies or substantial portions of the Software.
  12. #
  13. # THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
  14. # IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
  15. # FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
  16. # AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
  17. # LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING
  18. # FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS
  19. # IN THE SOFTWARE.
  20. from CIM15.IEC61970.Generation.GenerationDynamics.FossilSteamSupply import FossilSteamSupply
  21. class Supercritical(FossilSteamSupply):
  22. """Once-through supercritical boilerOnce-through supercritical boiler
  23. """
  24. def __init__(self, *args, **kw_args):
  25. """Initialises a new 'Supercritical' instance.
  26. """
  27. super(Supercritical, self).__init__(*args, **kw_args)
  28. _attrs = []
  29. _attr_types = {}
  30. _defaults = {}
  31. _enums = {}
  32. _refs = []
  33. _many_refs = []