Robot Structural Analysis Api < 90% VALIDATED >
public void Run()
using RobotOM; public class SimpleRSAExample robot structural analysis api
IRobotApplication app = new RobotApplication(); app.Project.New(IRobotProjectType.I_PT_SLAB, true); // clear existing IRobotStructure structure = app.Project.Structure; public void Run() using RobotOM
// Create nodes IRobotNode node1 = structure.Nodes.Create(1, 0, 0, 0); IRobotNode node2 = structure.Nodes.Create(2, 5, 0, 0); IRobotNode node3 = structure.Nodes.Create(3, 5, 4, 0); IRobotNode node4 = structure.Nodes.Create(4, 0, 4, 0); IRobotNode node2 = structure.Nodes.Create(2
// Run linear analysis IRobotAnalysis analysis = app.Project.Analysis; analysis.Case = 1; analysis.Analyze();