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
I am doing a stock-driven model for batteries "b" (8 types) but I am struggling to assign the element content "e" (9 elements) for the inflows and outflows afterwards.
I am able to calculate the model and also assign a vehicle "g" (6 types) market share afterwards. Then the outflow (t,g,b) looks as followed (inflow looks the same). The unit is number of batteries/vehicles.
Now I want to assign the element content to the flows depending on battery type and vehicle type. My parameter file is a list with the data structure "bge" and "kg" as a unit. However, after assign it, the total number of batteries (in this case shown for the inflow) rises as well:
I feel like this has something to do with my array Einstein sum of the matrixes, but cannot figure it out. This is my code and I would be thankful if you could help me out.
The text was updated successfully, but these errors were encountered:
Hi @TUBSAiPTL, my reply is quite late, but there are just too many things to handle. From the code you supply I cannot understand the aspect/index structure of all variables, but can gues that F_1_2 has a time t aspect and F_2_3 and S_2 have both a time t and an age-cohort c aspect.
Now the time t is the model time, and for the inflow F_1_2 that is produced/consumed at time t and then becomes the age-cohort c that traces the inflow from any year c = t over the subsequent years.
Hence, the element composition you are applying to actually refers to age-cohorts c and not to model time t, and (without that I have proporly check your code).
The other point could be the material content parameter. Which elements do you consider? Do the numbers in the parameter add up to the total mass if you sum up over aspect e?
Hi,
I am doing a stock-driven model for batteries "b" (8 types) but I am struggling to assign the element content "e" (9 elements) for the inflows and outflows afterwards.
I am able to calculate the model and also assign a vehicle "g" (6 types) market share afterwards. Then the outflow (t,g,b) looks as followed (inflow looks the same). The unit is number of batteries/vehicles.
Now I want to assign the element content to the flows depending on battery type and vehicle type. My parameter file is a list with the data structure "bge" and "kg" as a unit. However, after assign it, the total number of batteries (in this case shown for the inflow) rises as well:
I feel like this has something to do with my array Einstein sum of the matrixes, but cannot figure it out. This is my code and I would be thankful if you could help me out.
The text was updated successfully, but these errors were encountered: