Standard SLiCAP parameter names for the given model type.
(model_type: str)
| 17 | |
| 18 | |
| 19 | def _model_param_names(model_type: str) -> list: |
| 20 | """Standard SLiCAP parameter names for the given model type.""" |
| 21 | try: |
| 22 | from SLiCAP.SLiCAPprotos import _MODELS |
| 23 | m = _MODELS.get(model_type) |
| 24 | if m: |
| 25 | return list(m.params.keys()) |
| 26 | except Exception: |
| 27 | pass |
| 28 | return [] |
| 29 | |
| 30 | |
| 31 | def _find_slicap_preamble() -> str: |