1

How to open OpenStudio CLI

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.

Trying's avatar
21
Trying
asked 2021-09-24 00:10:20 -0500
edit flag offensive 0 remove flag close merge delete

Comments

add a comment see more comments

1 Answer

0

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.

David Goldwasser's avatar
20.4k
David Goldwasser
answered 2021-09-26 00:34:14 -0500, updated 2021-09-26 14:07:28 -0500
edit flag offensive 0 remove flag delete link

Comments

add a comment see more comments