Skip to content

cost_2015_variables

mean_electric_output = None module-attribute

annual_electric_output = None module-attribute

maintenance = None module-attribute

total_costs = None module-attribute

s_label = None module-attribute

s_kref = None module-attribute

s_k = None module-attribute

s_cref = None module-attribute

s_cost = None module-attribute

s_cost_factor = None module-attribute

init_cost_2015_variables()

Source code in process/data_structure/cost_2015_variables.py
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
def init_cost_2015_variables():
    global mean_electric_output
    mean_electric_output = 0.0

    global annual_electric_output
    annual_electric_output = 0.0

    global maintenance
    maintenance = 0.0

    global total_costs
    total_costs = 0.0

    global s_label
    s_label = np.array(["not used"] * 100, dtype=object)

    global s_kref
    s_kref = np.zeros(100, dtype=np.float64)

    global s_k
    s_k = np.zeros(100, dtype=np.float64)

    global s_cref
    s_cref = np.zeros(100, dtype=np.float64)

    global s_cost
    s_cost = np.zeros(100, dtype=np.float64)

    global s_cost_factor
    s_cost_factor = np.zeros(100, dtype=np.float64)