Robot Structural Analysis Api ❲REAL❳

IRobotApplication app = new RobotApplication(); app.Project.New(IRobotProjectType.I_PT_SLAB, true); // clear existing IRobotStructure structure = app.Project.Structure;

// 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); robot structural analysis api

// Apply load case and load IRobotLoadCase loadCase = structure.Cases.Create(1, IRobotLoadCaseType.I_LCT_STATIC); loadCase.Name = "SelfWeight + Point Load"; IRobotLoadServer loadServer = app.Project.Loads; loadServer.Create(1, IRobotLoadType.I_LT_BAR_UNI, loadCase.Number); IRobotBarUniformLoad load = loadServer.Get(1, loadCase.Number) as IRobotBarUniformLoad; load.SetBar(2); // apply to beam load.PZ = -10.0; // kN/m downward IRobotApplication app = new RobotApplication(); app

using RobotOM; public class SimpleRSAExample IRobotApplication app = new RobotApplication()