LoadCombinations

LoadCombinations

new LoadCombinations()

Creates an instance of the SkyCiv LoadCombinations class.

Source:

Extends

Methods

(static) add(name, combination_factors)

Adds a new load combination.

Parameters:
Name Type Description
name string

The name of the load combination.

combination_factors LoadCombinationObject

Key value pairs for the factors to apply to the load groups.

Source:
Example
const lcs = new LoadCombinations();

const factors = {
    SW: 1,
    windCase: 1,
    liveLoad: 1.5
}

lcs.add("LC1", factors)