Get Analysis Status
Retrieve the analysis status of your model
This document explains how to retrieve the analysis status of your model using OpenStaad python.
Description
Get analysis status for any STD model.
Function type
This function retrieves a value from the open staad file
Example
To use this function see the following example:
from openstaad import Root
# instantiate the root module
root = Root()
# Execute the analyze function from root module.
status = root.GetAnalysisStatus()
print(status)