The Header - kaemco/CitySim-Solver GitHub Wiki

Each XML file starts with a header that contains a Tag CitySim followed by a Tag Simulation that defines the period of the simulation and a Tag Climate that contains a reference to the climate file.

Example

<?xml version="1.0" encoding="ISO-8859-1"?>
<CitySim>
<Simulation beginMonth="1" endMonth="12" beginDay="1" endDay="31" sprngSeed=”1”/>
 <Climate location="./climateFiles/Basel.cli"/>

It defines a simulation period over the whole year and a reference to the climate file of Basel (Click here for a description of the file format .cli). Please note that sprngSeed should be an unsigned int coded on 32 bits. For example, any number between 0 and 4 294 967 295.This need to be changed to unique number every time user wants to re-run the simulation to obtain the results from the stochastic models such as occupant models. The "ISO8859-1" express that :

⚠️ **GitHub.com Fallback** ⚠️