Load pattern type. Matches the SAP2000 `eLoadPatternType` enum.
| 45 | |
| 46 | |
| 47 | class LoadPatternType(IntEnum): |
| 48 | """ |
| 49 | Load pattern type. |
| 50 | |
| 51 | Matches the SAP2000 `eLoadPatternType` enum. |
| 52 | """ |
| 53 | DEAD = 1 # Dead load |
| 54 | SUPERDEAD = 2 # Super dead load |
| 55 | LIVE = 3 # Live load |
| 56 | REDUCELIVE = 4 # Reducible live load |
| 57 | QUAKE = 5 # Earthquake |
| 58 | WIND = 6 # Wind load |
| 59 | SNOW = 7 # Snow load |
| 60 | OTHER = 8 # Other |
| 61 | MOVE = 9 # Moving load |
| 62 | TEMPERATURE = 10 # Temperature |
| 63 | ROOFLIVE = 11 # Roof live load |
| 64 | NOTIONAL = 12 # Notional load |
| 65 | PATTERNLIVE = 13 # Pattern live load |
| 66 | WAVE = 14 # Wave |
| 67 | BRAKING = 15 # Braking force |
| 68 | CENTRIFUGAL = 16 # Centrifugal force |
| 69 | FRICTION = 17 # Friction |
| 70 | ICE = 18 # Ice load |
| 71 | WINDONLIVELOAD = 19 # Wind on live load |
| 72 | HORIZONTALEARTHPRESSURE = 20 # Horizontal earth pressure |
| 73 | VERTICALEARTHPRESSURE = 21 # Vertical earth pressure |
| 74 | EARTHSURCHARGE = 22 # Earth surcharge |
| 75 | DOWNDRAG = 23 # Downdrag |
| 76 | VEHICLECOLLISION = 24 # Vehicle collision |
| 77 | VESSELCOLLISION = 25 # Vessel collision |
| 78 | TEMPERATUREGRADIENT = 26 # Temperature gradient |
| 79 | SETTLEMENT = 27 # Settlement |
| 80 | SHRINKAGE = 28 # Shrinkage |
| 81 | CREEP = 29 # Creep |
| 82 | WATERLOADPRESSURE = 30 # Water pressure |
| 83 | LIVELOADSURCHARGE = 31 # Live load surcharge |
| 84 | LOCKEDINFORCES = 32 # Locked-in forces |
| 85 | PEDESTRIANLL = 33 # Pedestrian live load |
| 86 | PRESTRESS = 34 # Prestress |
| 87 | HYPERSTATIC = 35 # Hyperstatic |
| 88 | BOUYANCY = 36 # Buoyancy |
| 89 | STREAMFLOW = 37 # Stream flow |
| 90 | IMPACT = 38 # Impact |
| 91 | CONSTRUCTION = 39 # Construction |
| 92 | |
| 93 | |
| 94 | @dataclass |