There is a Javascript help for some functions in SIMSOLID. How can we access other functions such as copying analyses, applying boundary conditions etc via Javascript objects ?
Hi Saash,
In SimSolid, the JavaScript API provides programmatic access to certain modeling and analysis functions, but not all GUI features are exposed directly. While the help documentation covers some functions, other actions such as copying analyses, applying boundary conditions, or modifying loadscan often be accessed via JavaScript objects representing the model, parts, and analyses. You can explore available methods by opening the Script Console in SimSolid and using commands like console.log(Object.keys(simsolid)) or inspecting objects returned by simsolid.getModel() to see what functions are available. For more advanced operations, you may need to combine existing API methods for example, creating a new analysis object and programmatically adding boundary conditions by referencing part nodes or faces since there is currently no single direct function for some GUI actions.