You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
⏺ Now each file has a distinct role with no redundant tables:
- variable_names.md — exhaustive reference of every variable name and dimension (source of truth)
- batched_modeling.md — explains how variables are stored/accessed (the TypeModel mechanism), links to variable_names.md for the list
- building-models/index.md — small user-facing subset (7 key variables) to get users started, links to variable_names.md for the full list
Copy file name to clipboardExpand all lines: docs/architecture/batched_modeling.md
+7-35Lines changed: 7 additions & 35 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -507,43 +507,15 @@ The same cached `*Data` instances created during validation are reused during `b
507
507
508
508
## Variable Storage
509
509
510
-
Variables are stored in model classes with a consistent pattern:
510
+
Variables are stored in each `*Model`'s `_variables` dict, keyed by their `type|name` string (e.g., `'flow|rate'`). `TypeModel` provides subscript access and optional element slicing:
0 commit comments