4 walls vs 1 wall - House regulation on heating
7 views (last 30 days)
Show older comments
Patrik Kusevic
on 26 Mar 2024
Commented: Patrik Kusevic
on 3 May 2024
Hi MathWorks team,
While studyin a House Heating system, I failed to understand why would the model of the house only have one wall insted of 4 walls and a floor ? (House Heating System)
I'm trying to model my own model on this theme, that is a room heating system for starters.
The model from MathWorks
The idea of a model I have in mind 0 Comments
Accepted Answer
Nivedita
on 3 May 2024
Hello Patrik,
On clicking the "Air-Wall Convection" block, under Parameters, the Area is defined by the variable "wallArea" in m^2. If you look the Model Properties and navigate to the "InitFcn" under Callbacks, you can find the definition of the above said variable as follows:
% House length = 30 m
lenHouse = 30;
% House width = 10 m
widHouse = 10;
% House height = 4 m
htHouse = 4;
wallArea = 2*lenHouse*htHouse + 2*widHouse*htHouse;
This depicts that all the 4 walls have been taken into consideration in the model. In my opinion, exchange of heat through the floor is not considered and thus the floor is not taken into consideration.
I hope this clarifies your query!
More Answers (0)
See Also
Categories
Find more on Creating Custom Components and Libraries in Help Center and File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!