Table of Contents

Class AssembledBeam

Namespace
LibreRally.Vehicle
Assembly
LibreRally.dll

A single assembled beam connecting two nodes.

public record AssembledBeam : IEquatable<AssembledBeam>
Inheritance
AssembledBeam
Implements
Inherited Members

Constructors

AssembledBeam(string, string, float, float, float, float, string, string)

A single assembled beam connecting two nodes.

public AssembledBeam(string Id1, string Id2, float Spring, float Damp, float DeformThreshold, float BreakStrength, string BeamType, string DeformGroup)

Parameters

Id1 string

Identifier of the first node.

Id2 string

Identifier of the second node.

Spring float

Resolved beam spring stiffness.

Damp float

Resolved beam damping coefficient.

DeformThreshold float

Resolved deformation threshold.

BreakStrength float

Resolved break strength.

BeamType string

BeamNG beam type token.

DeformGroup string

Optional deformation group name.

Properties

BeamType

BeamNG beam type token.

public string BeamType { get; init; }

Property Value

string

BreakStrength

Resolved break strength.

public float BreakStrength { get; init; }

Property Value

float

Damp

Resolved beam damping coefficient.

public float Damp { get; init; }

Property Value

float

DeformGroup

Optional deformation group name.

public string DeformGroup { get; init; }

Property Value

string

DeformThreshold

Resolved deformation threshold.

public float DeformThreshold { get; init; }

Property Value

float

Id1

Identifier of the first node.

public string Id1 { get; init; }

Property Value

string

Id2

Identifier of the second node.

public string Id2 { get; init; }

Property Value

string

Spring

Resolved beam spring stiffness.

public float Spring { get; init; }

Property Value

float