Skip to content

Commit eb68949

Browse files
authored
Merge pull request #2018 from ibpsa/issue2017_AixWeatherInfo
Update doc on how to get .mos data #2017
2 parents 649c777 + f3b7926 commit eb68949

File tree

1 file changed

+34
-4
lines changed

1 file changed

+34
-4
lines changed

IBPSA/BoundaryConditions/WeatherData/ReaderTMY3.mo

Lines changed: 34 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1256,35 +1256,59 @@ The following variables serve as output and are accessible via <code>weaBus</cod
12561256
</tr>
12571257
</table>
12581258
<!-- ============================================== -->
1259-
<h4>Adding new weather data</h4>
1259+
<h4>Using new weather data</h4>
12601260
<p>
1261-
To add new weather data, proceed as follows:
1261+
To use new weather data, there are two supported ways:
1262+
</p>
1263+
<ul>
1264+
<li>
1265+
<p>
1266+
You can use the Python tool AixWeather
1267+
(<a href=\"https://github.com/RWTH-EBC/AixWeather\">https://github.com/RWTH-EBC/AixWeather</a>),
1268+
which is installable via <code>pip</code> or accessible via a WebApp (<a href=\"https://aixweather.eonerc.rwth-aachen.de/\">https://aixweather.eonerc.rwth-aachen.de/</a>).
1269+
Here, conversion of <code>epw</code> (EnergyPlus), <code>dat</code> (German Meteorological Service) or custom data
1270+
to the desired <code>mos</code> format is supported.
1271+
</p>
1272+
</li>
1273+
<li>
1274+
<p>
1275+
You can use a Java application to convert <code>epw</code> to <code>mos</code> format by following these steps:
12621276
</p>
12631277
<ol>
12641278
<li>
1279+
<p>
12651280
Download the weather data file with the <code>epw</code> extension from
12661281
<a href=\"http://energyplus.net/weather\">
12671282
http://energyplus.net/weather</a>.
1283+
</p>
12681284
</li>
12691285
<li>
1286+
<p>
12701287
Add the file to <code>IBPSA/Resources/weatherdata</code> (or to any directory
12711288
for which you have write permission).
1289+
</p>
12721290
</li>
12731291
<li>
1274-
On a console window, type<pre>
1292+
<p>
1293+
On a console window, type</p><pre>
12751294
cd IBPSA/Resources/weatherdata
12761295
java -jar ../bin/ConvertWeatherData.jar inputFile.epw
12771296
</pre>
1278-
if inputFile contains space in the name:
1297+
<p>
1298+
or if <code>inputFile.epw</code> contains space in the name:
1299+
</p>
12791300
<pre>
12801301
java -jar ../bin/ConvertWeatherData.jar \"inputFile .epw\"
12811302
</pre>
1303+
<p>
12821304
This will generate the weather data file <code>inputFile.mos</code>, which can be read
12831305
by the model
12841306
<a href=\"modelica://IBPSA.BoundaryConditions.WeatherData.ReaderTMY3\">
12851307
IBPSA.BoundaryConditions.WeatherData.ReaderTMY3</a>.
1308+
</p>
12861309
</li>
12871310
</ol>
1311+
</ul>
12881312
<!-- ============================================== -->
12891313
<h4>Location data that are read automatically from the weather data file</h4>
12901314
<p>
@@ -1598,6 +1622,12 @@ Technical Report, NREL/TP-581-43156, revised May 2008.
15981622
</html>", revisions="<html>
15991623
<ul>
16001624
<li>
1625+
May 28, 2025, by Fabian Wuellhorst:<br/>
1626+
Added information on AixWeather to documentation.<br/>
1627+
This is for
1628+
<a href=\"https://github.com/ibpsa/modelica-ibpsa/issues/2017\">IBPSA, #2017</a>.
1629+
</li>
1630+
<li>
16011631
September 6, 2021, by Ettore Zanetti:<br/>
16021632
Changed alt and lat to real inputs.<br/>
16031633
This is for

0 commit comments

Comments
 (0)