### Get Help for Basic Simulation Script
Source: https://openstudio-hpxml.readthedocs.io/en/v1.1.0/getting_started.html
Run this command to view all available commands and arguments for the `run_simulation.rb` script.
```bash
openstudio workflow/run_simulation.rb -h
```
--------------------------------
### HPXML Window Element Example
Source: https://openstudio-hpxml.readthedocs.io/en/v1.1.0/workflow_inputs.html
An example of a basic window definition in an HPXML file. This shows the core attributes required for a window.
```xml
108.0
0
0.33
0.45
```
--------------------------------
### HPXML Window Element with Defaults
Source: https://openstudio-hpxml.readthedocs.io/en/v1.1.0/workflow_inputs.html
An example of a window definition in the generated 'in.xml' file, showing how default elements are populated. This includes interior shading and fraction operable.
```xml
108.0
0
0.33
0.45
0.7
0.85
0.67
```
--------------------------------
### Run Basic Simulation with OpenStudio CLI
Source: https://openstudio-hpxml.readthedocs.io/en/v1.1.0/getting_started.html
Use this command for the simplest and fastest method to run simulations. It calls the OpenStudio CLI with a specified Ruby script and an XML input file. A 'run' directory is created with all input/output files.
```bash
openstudio workflow/run_simulation.rb -x workflow/sample_files/base.xml
```
--------------------------------
### Run Advanced Simulation with OSW File
Source: https://openstudio-hpxml.readthedocs.io/en/v1.1.0/getting_started.html
This command is used for advanced simulations requiring more flexibility, such as specifying individual measure arguments or including additional measures. It runs simulations based on a JSON OpenStudio Workflow (OSW) file.
```bash
openstudio run -w workflow/template.osw
```
=== COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.