Page 1 of 2

Transform annual data into monthly cumulative data

Posted: Thu Jun 22, 2017 6:01 pm
by Priscila
I have an input variable (Demand) that is given every 15 minutes for 12 months and I need to gather this data of 15 minutes in 1 hour to get the consumption, I need between annual data and that are presented monthly, the objective is to get the Value of the monthly energy bill that is the result of the sum of consumption multiplied by the consumption rate and demand multiplied by the demand rate, how can I do that?

Re: Transform annual data into monthly cumulative data

Posted: Thu Jun 22, 2017 6:36 pm
by Administrator
I don't really follow what you are asking, but it sounds like a job for Excel.

Re: Transform annual data into monthly cumulative data

Posted: Mon Jun 26, 2017 12:05 pm
by Priscila
At first, the demand is an initial variable, after it is reduced as a function of a generator of energy that is inserted in the system, where the feedback is present generating a new variable of demand and another of consumption, for that reason I have to do this in Vensim . I need to know the function that does and displays the average for every 4 data and also if it is possible to make an accumulator that in a certain period is zeroed and starts counting again.

Re: Transform annual data into monthly cumulative data

Posted: Mon Jun 26, 2017 12:10 pm
by Administrator
Priscila wrote:At first, the demand is an initial variable, after it is reduced as a function of a generator of energy that is inserted in the system, where the feedback is present generating a new variable of demand and another of consumption, for that reason I have to do this in Vensim .
ok. This was not clear in your initial question.
Priscila wrote:I need to know the function that does and displays the average for every 4 data
Does this help?
http://www.vensim.com/documentation/ind ... _trend.htm
Priscila wrote:and also if it is possible to make an accumulator that in a certain period is zeroed and starts counting again.
Use a level and empty it using level/time step when you want it zeroed.

Re: Transform annual data into monthly cumulative data

Posted: Mon Jun 26, 2017 1:39 pm
by Priscila
Use a level and empty it using the level / time step when you want it to be zeroed.
Could you give me an example?

Re: Transform annual data into monthly cumulative data

Posted: Mon Jun 26, 2017 1:41 pm
by Administrator

Code: Select all

some level = integ (inflow - outflow - reset level, initial stock)

reset level = if then else ( time = 10 , some level / time step , 0 )
This will reset the level at time = 10.

Re: Transform annual data into monthly cumulative data

Posted: Mon Jun 26, 2017 2:25 pm
by Priscila
That way I can show the values ​​at each time interval, every 10, but I can not reset the accumulator. I need, for example, to add from 0 to 10, to zero the count add from 11 to 22 and so on and show on the same variable.

Re: Transform annual data into monthly cumulative data

Posted: Mon Jun 26, 2017 6:16 pm
by Priscila
Does the vensim software contain no more than 8000 data in tabular form?

Re: Transform annual data into monthly cumulative data

Posted: Tue Jun 27, 2017 7:52 am
by Administrator
Priscila wrote:That way I can show the values ​​at each time interval, every 10, but I can not reset the accumulator. I need, for example, to add from 0 to 10, to zero the count add from 11 to 22 and so on and show on the same variable.
I think this would be much easier if you upload the model you are working on so we can see. I'm really struggling to understand what you are trying to do.

Re: Transform annual data into monthly cumulative data

Posted: Tue Jun 27, 2017 7:52 am
by Administrator
Priscila wrote:Does the vensim software contain no more than 8000 data in tabular form?
Correct.

Re: Transform annual data into monthly cumulative data

Posted: Tue Jun 27, 2017 12:22 pm
by Priscila
The variable invoice is the sum of demand (given every 15 minutes) times the tariff of demand + consumption (which is the sum of demand every 1 hour) times the consumption tariff ...
The consumption variable should be the average of the four demand values, so that the data every 15 minutes are transformed into hourly data. After these hourly data must be added every month, that is, they need to be accumulated from time 0 to time 2975, from time 2976 to time 5759 and so on until total sum of monthly consumptions.
Lastly, the invoice variable must be calculated monthly, that is, it accumulates until the time 2975, it zeroes and it begins to accumulate of the time 2976 until 5759, zera and begins to accumulate in 5760 until 8735 and so on.
There are a total of 14 months of simulation.
Also, after the simulation I need to transfer the data to excel, this is possible given that it is a total of 40800 data.

Re: Transform annual data into monthly cumulative data

Posted: Wed Jun 28, 2017 7:50 am
by Administrator
I cannot find a parameter called "invoice" in your model.

I think it might be better if you first try and follow some best practice on your model. It doesn't pass the most basic of tests (dimensional consistency), it's impossible for me to work out what the model is supposed to do or if any of the calculations are correct (what is demand even measured in?).

Re: Transform annual data into monthly cumulative data

Posted: Mon Jul 03, 2017 5:55 pm
by Priscila
I have a series of 9 data:
2
3
1
2
4
5
6
7
5
It is necessary to obtain in the vensim, the maximum value comparing every 3 intervals as follows:
0
0
3
0
0
5
0
0
7
How can I perform this operation
Also, how do I export the values obtained in a simulation with more than 8000 times

Re: Transform annual data into monthly cumulative data

Posted: Tue Jul 04, 2017 3:40 pm
by Administrator
Priscila wrote:I have a series of 9 data:
2
3
1
2
4
5
6
7
5
It is necessary to obtain in the vensim, the maximum value comparing every 3 intervals as follows:
0
0
3
0
0
5
0
0
7
How can I perform this operation
Where is the logic in this? Why are there zeros if you are calculating the maximum over 3 intervals?
Also, how do I export the values obtained in a simulation with more than 8000 times
Vensim documentation, search for export.

Re: Transform annual data into monthly cumulative data

Posted: Mon Oct 15, 2018 1:22 pm
by Priscila
Administrator wrote: Mon Jun 26, 2017 1:41 pm

Code: Select all

some level = integ (inflow - outflow - reset level, initial stock)

reset level = if then else ( time = 10 , some level / time step , 0 )
This will reset the level at time = 10.

Good Morning,

As above the variable is reset at time 10, how can I reset a variable with a fixed time, for example whenever I complete 30 days.

Re: Transform annual data into monthly cumulative data

Posted: Tue Oct 16, 2018 4:49 am
by Administrator
Do you have a variable that indicates when 30 days have elapsed? If yes,

reset level = if then else ( variable that indicates time has elapsed = 1 , some level / time step , 0 )

Re: Transform annual data into monthly cumulative data

Posted: Tue Oct 16, 2018 12:39 pm
by Priscila
Working with energy demand data, this data is every 15 minutes, so every 2784 data I have a month, how can I create the variable that informs when one month ends and starts the other to be able to use the equation above and reset whenever ends a month.

Re: Transform annual data into monthly cumulative data

Posted: Tue Oct 16, 2018 1:01 pm
by Administrator
Can you upload a sample of what you are working with and the model you are attempting to build? It's difficult to suggest an answer unless we can see what you have.

Re: Transform annual data into monthly cumulative data

Posted: Tue Oct 16, 2018 1:09 pm
by Priscila
The template is attached in the Fatura tab. To give continuity in the precise modeling find the maximum value of demand each month, represented by the variable Máxima demanda faturada Ponta, with one month being 2785 data each.

Re: Transform annual data into monthly cumulative data

Posted: Mon Oct 22, 2018 4:42 pm
by Priscila
Hello,

You have an answer, which function can I use.

Re: Transform annual data into monthly cumulative data

Posted: Mon Oct 22, 2018 7:25 pm
by Administrator
I've attached a model showing how to get a variable = 1 when a month is complete.
datedemo.mdl
(2.15 KiB) Downloaded 5606 times

Re: Transform annual data into monthly cumulative data

Posted: Tue Oct 23, 2018 12:50 pm
by Priscila
Thank you so much, I was able to solve some of my problem.
One more question, it is possible to reset a SAMPLE IF TRUE variable

Re: Transform annual data into monthly cumulative data

Posted: Wed Oct 24, 2018 8:00 am
by Administrator
You reset a sample if true by making the first argument to the function true.

Re: Transform annual data into monthly cumulative data

Posted: Wed Oct 24, 2018 3:10 pm
by Priscila
I need to find the maximum value of a variable every month, however using SAMPLE IF TRUE this variable is accumulated and this is not what I need. What function could I use, having the variable that tells me when it starts a new month.

Re: Transform annual data into monthly cumulative data

Posted: Wed Oct 24, 2018 3:39 pm
by Administrator
The datedemo model I uploaded gives you a variable that is 1 when it's a new month, and zero at all other times.