How to calculate energy usage from the Refrigeration Cycle model in Simscape?
4 Ansichten (letzte 30 Tage)
Ältere Kommentare anzeigen
Ambareesh Rathi
am 18 Mär. 2017
Beantwortet: Alisha Schor
am 21 Mär. 2017
In the Simscape's Refrigeration Cycle model (ssc_refrigeration), I would like to determine/calculate energy usage when a cycle is simulated in Simulink.
Any leads would be appreciated. Thank you!
0 Kommentare
Akzeptierte Antwort
Alisha Schor
am 21 Mär. 2017
Simscape signal logging is a good place to start. This will give you access to all of the physical variables associated with each component. By probing values of the the various blocks, you can calculate the values of interest.
As a template, you can open the source code for the first embedded link in the model, "Plot performance of system." Here you can see, that compressor power, for example, can be accessed by the command:
simlog_ssc_refrigeration.Compressor.Controlled_Mass_Flow_Rate_Source_2P.power.series.values('W');
and that this is used to calculate and display the instantaneous power of the compressor. You could then integrate this value over the course of the simulation to determine the total energy input to the compressor. Following this same concept, one can also calculate the total heat energies and the expansion energy by probing the appropriate quantity.
0 Kommentare
Weitere Antworten (0)
Siehe auch
Kategorien
Mehr zu Simscape Fluids finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!