Question-and-Answer Resource for the Building Energy Modeling Community
Get started with the Help page
Ask Your Question
1

How to open OpenStudio CLI

asked 3 years ago

Trying's avatar

How to you get to the openStudio CLI? I can't seem to figure out how to get to this CLI. Is this something I can call with python terminal? Thanks.

Preview: (hide)

1 Answer

Sort by » oldest newest most voted
0

answered 3 years ago

updated 3 years ago

Yes, here is a Python script to run the OpenStudio CLI through Python. I subprocess is probably better approach than os.system.

import os
os.system("openstudio run -w my_dir/in.osw")

The script is in this public repo setup with an OSW file ready to run, or you can use the code above on one of your OpenStudio Workflow (OSW) files.

For reference, Ruby code is almost the same

system("openstudio run -w my_dir/in.osw")

For either of these to work you need to make sure that openstudio is recognized by the terminal, or use the full path to the CLI when calling the OpenStudio CLI. You can learn more about the OpenStudio CLI on the documentation page for it.

Lastly, the MetaCLI which runs OpenStudio Analysis files (OSA) can also be called from any scripting language that can make command calls.

Preview: (hide)
link

Your Answer

Please start posting anonymously - your entry will be published after you log in or create a new account.

Add Answer

Training Workshops

Careers

Question Tools

1 follower

Stats

Asked: 3 years ago

Seen: 354 times

Last updated: Sep 26 '21