| 2047 | } |
| 2048 | |
| 2049 | bool EpwDataPoint::setDirectNormalRadiation(double value) { |
| 2050 | if (0 > value || value == 9999) { |
| 2051 | m_directNormalRadiation = "9999"; |
| 2052 | return false; |
| 2053 | } |
| 2054 | m_directNormalRadiation = std::to_string(value); |
| 2055 | return true; |
| 2056 | } |
| 2057 | |
| 2058 | bool EpwDataPoint::setDirectNormalRadiation(const std::string& directNormalRadiation) { |
| 2059 | bool ok; |
no test coverage detected