Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions documentation/source/io/input-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ with an error message. The last line of the output file `OUT.DAT` may give an
indication of where in the input file the problem lies.

!!! Info "Variable Descriptions"
A full list of inputs variables is given in the PROCESS data structure API documentation [here](../../source/reference/process/data_structure/blanket_library).
A full list of inputs variables is given in the PROCESS data structure API documentation [here](../../source/reference/process/data_structure/blanket_variables).

## File Naming Convention

Expand Down Expand Up @@ -152,7 +152,7 @@ one can add a `*` to the beginning of the line, as below:
```

!!! Info "Variable Descriptions"
A full list of inputs variables is given in the PROCESS data structure API documentation [here](../../source/reference/process/data_structure/blanket_library).
A full list of inputs variables is given in the PROCESS data structure API documentation [here](../../source/reference/process/data_structure/blanket_variables).

## Scan

Expand Down
2 changes: 0 additions & 2 deletions process/core/init.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,6 @@
from process.core.log import logging_model_handler
from process.core.solver import iteration_variables
from process.core.solver.constraints import ConstraintManager
from process.data_structure.blanket_library import init_blanket_library
from process.data_structure.build_variables import init_build_variables
from process.data_structure.buildings_variables import init_buildings_variables
from process.data_structure.ccfe_hcpb_module import init_ccfe_hcpb_module
Expand Down Expand Up @@ -293,7 +292,6 @@ def init_all_module_vars():
init_pulse_variables()
init_rebco_variables()
init_reinke_variables()
init_blanket_library()
init_dcll_module()
init_power_variables()
init_neoclassics_variables()
Expand Down
2 changes: 2 additions & 0 deletions process/core/model.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
import abc
from dataclasses import dataclass, fields

from process.data_structure.blanket_variables import BlanketData
from process.data_structure.cost_2015_variables import Cost2015Data
from process.data_structure.cost_variables import CostData
from process.data_structure.cs_fatigue_variables import CSFatigueData
Expand All @@ -21,6 +22,7 @@ class DataStructure:
costs: CostData = initialise_later
first_wall: FirstWallData = initialise_later
fwbs: FWBSData = initialise_later
blanket: BlanketData = initialise_later

def __post_init__(self):
for f in fields(self):
Expand Down
4 changes: 2 additions & 2 deletions process/data_structure/__init__.py
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
from process.data_structure import (
blanket_library,
blanket_variables,
build_variables,
buildings_variables,
ccfe_hcpb_module,
Expand Down Expand Up @@ -37,7 +37,7 @@
)

__all__ = [
"blanket_library",
"blanket_variables",
"build_variables",
"buildings_variables",
"ccfe_hcpb_module",
Expand Down
Loading
Loading