Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
% Initialize the SAP2000 COM interface
sapObject = actxserver('SAP2000v20.SapObject');
% Start the SAP2000 application
sapObject.StartApplication;
% Open an existing model
modelPath = 'C:\path\to\model.sdb';
sapObject.SapModel.File.OpenFile(modelPath);