Get the number of load patterns. Args: model: SAP2000 SapModel object Returns: Load pattern count.
(model)
| 228 | |
| 229 | @staticmethod |
| 230 | def get_count(model) -> int: |
| 231 | """ |
| 232 | Get the number of load patterns. |
| 233 | |
| 234 | Args: |
| 235 | model: SAP2000 SapModel object |
| 236 | |
| 237 | Returns: |
| 238 | Load pattern count. |
| 239 | """ |
| 240 | return model.LoadPatterns.Count() |
| 241 | |
| 242 | @staticmethod |
| 243 | def get_name_list(model) -> List[str]: |
nothing calls this directly
no outgoing calls
no test coverage detected