Cantilever#
![]() |
In this example we will demonstrate how to:
|
import os
from math import inf
from dlubal.api import rfem
def define_structure() -> list:
"""Define and return a list of structural objects."""
return [
# Define material
rfem.structure_core.Material(
no=1,
name='S235',
),
# Define section
rfem.structure_core.Section(
no=1,
name='HE 300 A',
material=1,
),
# Define nodes
rfem.structure_core.Node(
no=1,
),
rfem.structure_core.Node(
no=2,
coordinate_1=6.0,
),
# Define line
rfem.structure_core.Line(
no=1,
definition_nodes=[1, 2],
),
# Define member
rfem.structure_core.Member(
no=1,
line=1,
section_start=1,
),
# Define nodal support at Node 1 (fully fixed)
rfem.types_for_nodes.NodalSupport(
no=1,
nodes=[1],
spring_x=inf,
spring_y=inf,
spring_z=inf,
rotational_restraint_x=inf,
rotational_restraint_y=inf,
rotational_restraint_z=inf,
),
]
def define_loading() -> list:
"""Define and return a list of loading objects."""
return [
# Static analysis settings
rfem.loading.StaticAnalysisSettings(
no=1,
analysis_type=rfem.loading.StaticAnalysisSettings.ANALYSIS_TYPE_GEOMETRICALLY_LINEAR
),
# Define load cases
rfem.loading.LoadCase(
no=1,
static_analysis_settings=1,
),
rfem.loading.LoadCase(
no=2,
static_analysis_settings=1,
),
# Define nodal loads
rfem.loads.NodalLoad(
no=1,
load_case=1,
nodes=[2],
load_type=rfem.loads.NodalLoad.LOAD_TYPE_COMPONENTS,
components_force_y=5000, # Force in Y direction (N)
components_force_z=10000, # Force in Z direction (N)
),
rfem.loads.MemberLoad(
no=1,
load_case=2,
members=[1],
load_type=rfem.loads.MemberLoad.LOAD_TYPE_FORCE,
magnitude=10000,
),
# Define design situation
rfem.loading.DesignSituation(
no=1,
design_situation_type=rfem.loading.DesignSituation.DESIGN_SITUATION_TYPE_STR_PERMANENT_AND_TRANSIENT_6_10,
),
# Define load combination
rfem.loading.LoadCombination(
no=1,
name='CO1',
items = rfem.loading.LoadCombination.ItemsTable(
rows=[
rfem.loading.LoadCombination.ItemsRow(
load_case=1,
factor=1.35,
),
rfem.loading.LoadCombination.ItemsRow(
load_case=2,
factor=1.5,
)
]
),
design_situation=1,
),
rfem.loading.LoadCombination(
no=2,
name='CO2',
items = rfem.loading.LoadCombination.ItemsTable(
rows=[
rfem.loading.LoadCombination.ItemsRow(
load_case=1,
factor=0.85,
),
rfem.loading.LoadCombination.ItemsRow(
load_case=2,
factor=1.0,
)
]
),
design_situation=1,
),
]
"""Runs the structural analysis example."""
with rfem.Application() as rfem_app:
# Step 1: Create a new model
rfem_app.create_model(name='cantilever')
# Step 2: Clear existing objects
rfem_app.delete_all_objects()
# Step 3: Define and create all objects
objects = define_structure() + define_loading()
rfem_app.create_object_list(objects)
# Step 4: Retrieve information about specific objects
print("\nGet Object List:")
object_list = rfem_app.get_object_list([rfem.loading.LoadCombination()])
for object in object_list:
print(f"{object.DESCRIPTOR.name} | {object.name} | {object.combination_rule_str}")
# Step 5: Perform calculation
calculation = rfem_app.calculate_all(skip_warnings=True)
print(f"\nCalculation Info:\n{calculation}")
# Step 6: Save model with results
model_path = os.path.abspath('./cantilever')
rfem_app.save_model(path=model_path)
print(f"\nModel File Path:\n{rfem_app.get_model_main_parameters().model_path}")
using rfem = Dlubal.Api.Rfem;
using common = Dlubal.Api.Common;
using Google.Protobuf;
// Returns a list of structural objects to be created.
static List<IMessage> DefineStructure()
{
return new List<IMessage>
{
new rfem.StructureCore.Material{
Name="S235"
},
new rfem.StructureCore.Section{
Name="HE 300 A",
Material=1,
},
new rfem.StructureCore.Node{
No=1,
Coordinate1=0,
},
new rfem.StructureCore.Node{
No = 2,
Coordinate1 = 6,
},
new rfem.StructureCore.Line{
No = 1,
Type = rfem.StructureCore.Line.Types.Type.Polyline,
DefinitionNodes = { 1, 2 }
},
new rfem.StructureCore.Member{
No = 1,
Type = rfem.StructureCore.Member.Types.Type.Beam,
Line = 1,
SectionStart = 1
},
new rfem.TypesForNodes.NodalSupport{
No=1,
SpringX = double.PositiveInfinity,
SpringY = double.PositiveInfinity,
SpringZ = double.PositiveInfinity,
RotationalRestraintX = double.PositiveInfinity,
RotationalRestraintY = double.PositiveInfinity,
RotationalRestraintZ = double.PositiveInfinity,
Nodes = { 1 }
},
};
}
static List<IMessage> DefineLoading()
{
return new List<IMessage>
{
new rfem.Loading.StaticAnalysisSettings{
No=1,
AnalysisType=rfem.Loading.StaticAnalysisSettings.Types.AnalysisType.GeometricallyLinear,
},
new rfem.Loading.LoadCase{
No=1,
StaticAnalysisSettings=1,
},
new rfem.Loading.LoadCase{
No=2,
StaticAnalysisSettings=1,
},
new rfem.Loads.NodalLoad{
No=1,
LoadCase=1,
Nodes={2},
LoadType=rfem.Loads.NodalLoad.Types.LoadType.Components,
ComponentsForceY=5000,
ComponentsForceZ=10000,
},
new rfem.Loads.MemberLoad{
No=1,
LoadCase=2,
Members={1},
LoadDistribution=rfem.Loads.MemberLoad.Types.LoadDistribution.Uniform,
LoadType=rfem.Loads.MemberLoad.Types.LoadType.Force,
Magnitude=10000,
},
new rfem.Loading.DesignSituation{
No=1,
DesignSituationType=rfem.Loading.DesignSituation.Types.DesignSituationType.StrPermanentAndTransient610,
},
new rfem.Loading.LoadCombination{
No=1,
Name = "CO1",
DesignSituation=1,
CombinationRuleStr="1.35*LC1+1.5*LC2",
},
new rfem.Loading.LoadCombination{
No=2,
Name = "CO2",
DesignSituation=1,
Items=new rfem.Loading.LoadCombination.Types.ItemsTable{
Rows={
new rfem.Loading.LoadCombination.Types.ItemsRow{
LoadCase=1,
Factor=0.85,
},
new rfem.Loading.LoadCombination.Types.ItemsRow{
LoadCase=2,
Factor=1.0,
},
},
},
},
};
}
ApplicationClient? rfemApp = null;
try
{
rfemApp = new ApplicationClient();
// Step 2: Get the application info
common.ApplicationInfo info = await rfemApp.get_application_info();
Console.WriteLine("Version: " + info.Name);
// Step 2: Create a new model
await rfemApp.close_all_models(false);
await rfemApp.create_model("Cantilever");
// Step 3: Create structure and loading in empty model
await rfemApp.delete_all_objects();
await rfemApp.create_object_list(DefineStructure());
await rfemApp.create_object_list(DefineLoading());
// Step 4: Retrieve data about specific objects
Console.WriteLine("Get Object List:");
var object_list = await rfemApp.get_object_list<rfem.Loading.LoadCombination>();
foreach (var lc in object_list)
{
Console.WriteLine($"{rfem.Loading.LoadCombination.Descriptor.Name} | {lc.Name} | {lc.CombinationRuleStr}");
}
// Step 5: Perform a plausibility check
var plausibilityCheckResult = await rfemApp.plausibility_check(
common.PlausibilityCheckType.PlausibilityCheckCalculation,
skipWarnings: true
);
Console.WriteLine("\nPlausibility Check:");
Console.WriteLine(plausibilityCheckResult);
// Step 6: Run the Static analysis
var calcInfo = await rfemApp.calculate_all(skipWarnings: true);
Console.WriteLine("\nCalculation Info:");
Console.WriteLine(calcInfo);
// Step 6: Save the model with results
string modelPath = Path.GetFullPath("./cantilever");
await rfemApp.save_model(path: modelPath);
var savedModelPath = await rfemApp.get_model_main_parameters();
Console.WriteLine($"\nModel File Path:\n{savedModelPath.ModelPath}");
}
catch (Exception ex)
{
Console.WriteLine($"Error: {ex.Message}");
}
finally
{
if (rfemApp != null) await rfemApp.close_connection();
}