Help Fitting Exponential Recovery Load Model
Mostrar comentarios más antiguos
Hi I'm relatively new to MatLab and am trying to fit the Exponential Recovery Load Model as shown below to some data:
der(xp) = P0*(V^(as) - V^at) - xp/Tp;
Pl = (xp/Tp + P0*V^at);
whereby xp, tp and at refer to the transient behaviour of the model, while as refers to the steady state modle. I understand I should use curve fitting but am unsure how to do so with 2 equations which I must fit. Any help would be greatly appreciated
Respuestas (2)
Star Strider
el 3 de En. de 2015
0 votos
Parameter estimation is relatively straightforward in MATLAB, although it may not seem to be at first. We need a bit more information on your functions and data.
Specifically:
- What are your data? What are the independent and dependent variables? Are they vectors or matrices?
- What are the parameters you want to estimate?
- What is der(xp)?
Please attach a file of a representative sample of your data long enough to estimate your parameters (usually 10 or more data pairs, triplets, or however your data are organised). I prefer .mat files, since they don’t involve the occasionally daunting complexities of text files.
2 comentarios
Ciaran
el 3 de En. de 2015
Star Strider
el 4 de En. de 2015
I may be missing something, but I don’t understand this:
- The data is a time series input PI, the instantansous Power Demand, and V, the instantaneous voltage. They are both vecotrs.
- For a specific time period the independent variables are PO, V, as, at, xp and Tp, while the dependent variable is PI.
The data should be both your independent and dependent variables.
So again, what are your independent and dependent variables, and what parameters are you estimating?
Rohan Panchal
el 7 de Mzo. de 2021
0 votos
This thesis linearises the exponential recovery model differential equations into state space form. Which can be directly implemented in estimate parameters state space task in the live editor.
Categorías
Más información sobre Linear Model Identification en Centro de ayuda y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!