Simulation Core
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

CTanks.f90 462 B

2 years ago
2 years ago
2 years ago
1234567891011121314151617181920
  1. module CTanks
  2. use SimulationVariables
  3. use CManifolds
  4. implicit none
  5. public
  6. contains
  7. subroutine Set_ManualPumpPower(v)
  8. use CManifolds, only:ChangeValve
  9. implicit none
  10. logical, intent(in) :: v
  11. data%EquipmentControl%Tank%ManualPumpPower = v
  12. call ChangeValve(43, v)
  13. #ifdef deb
  14. print*, 'ManualPumpPower=', data%EquipmentControl%Tank%ManualPumpPower
  15. #endif
  16. end subroutine
  17. end module CTanks