What is the best way to keep two variables synchronized?

조회 수: 7 (최근 30일)
Michael
Michael 2017년 4월 19일
편집: Adam 2017년 4월 21일
I am looking for advice on the best way to approach this problem. My initial instinct was that pointers would be the way to go, but MATLAB doesn't have "normal" pointers and any pointer-like solutions I've seen are hacks using functions or classes derived from handles that I'm not sure would work particularly well in my situation. So perhaps I'm thinking about this all wrong and there's a cleaner way to do things from the start...
Here's the situation: I am doing thermodynamic type calculations in two closed fluid loops. For each loop I have a single structure variable that contains the various items in the loop. Let's suppose that one loop has a heat source and a heat exchanger in it and the other has a heat sink and a heat exchanger in it, forgetting about things like temperatures and neglecting all the other loop pieces to keep things simple. These loops are connected via that common heat exchanger which is a part of both loops.
So my calculations might be such that they effectively set the following items:
loop1.heatSource.heatLoad=10;
loop1.heatExchanger.hotFlow=1;
loop1.heatExchanger.heatLoad=10;
Now I'm ready to do some calculations in the second loop to get that heat load to the heat sink. Let's say I now want to calculate the heat exchanger's cold side flow rate (i.e. the loop 2 flow rate). These calculations belong to loop 2, yet the heat exchanger is the same one for both loops. So right now what I do is:
loop2.heatExchanger=loop1.heatExchanger; % I need the heatLoad value for my calculation and I want to keep things synced
Then I do my calculation and arrive at:
loop2.heatExchanger.coldFlow=2;
Because these heat exchangers are actually the same piece, I then currently copy the structure back over to loop 1 so it's up to date.
loop1.heatExchanger=loop2.heatExchanger; % update loop 1's structure with the newly calculated value
Having to do these copies is an error prone approach. I would like to somehow establish a linking/pointer/alias type relationship between loop1.heatExchanger and loop2.heatExchanger such that I don't need to do any copying, my coldFlow=2 assignment would immediately get reflected back to the loop 1 instance, and it would always be true that loop1.heatExchanger and loop2.heatExchanger would always have the exact same fields set to the exact same values.
I have considered making heatExchanger not contained within either loop (i.e. a separate variable in the same scope as loop1 and loop2) so there would be only a single instance of that heat exchanger, but that then loses the fact that that heat exchanger is indeed part of loop 1 and also is part of loop 2. Looking at the contents of the loop1 variable for example I wouldn't have any information about that important piece of the loop.
I do create the heatExchanger structure and all the fields it will have at the beginning of my code and initialize the fields with NaNs to make it obvious when things haven't been set/copied. That does help identify mistakes of forgotten copies, but it doesn't at all address the need for those copies in the first place or help when a copy is missed after a value has been set initially.
Any help/guidance on a good way to approach this or structure my variables/code is greatly appreciated.

채택된 답변

James Tursa
James Tursa 2017년 4월 19일
"... any pointer-like solutions I've seen are hacks using functions or classes derived from handles ..."
This is really the only way, in MATLAB, to do directly what you are trying to do. The indirect way, of course, is to do the manual copying. So I think you are stuck with one of these (or similar) approaches.
MATLAB variables are not "tied down", so to speak, to any particular memory. As your program executes the data pointers for a variable can change, and in fact the variable itself can change its location in memory. So any memory pointers that you might want to employ simply would not be reliable. The advantage of a handle derived class is that the data pointers for the individual variables are forced to be tied to each other ... effectively they are forced to be shared data copies of each other. So changes in one variable are instantly reflected in the other since they share the same data memory.
  댓글 수: 3
Adam
Adam 2017년 4월 20일
편집: Adam 2017년 4월 21일
handle-derived classes definitely wouldn't fall under the definition of a hack. I use them all over the place to allow GUIs and objects to communicate with each other while accessing the same data.
There is no problem with having a struct that contains some normal data types and some handle-class objects. I wouldn't do it myself, but that is just because I would use classes throughout instead of structs, but the general idea is the same - a field on a struct is analagous to a property on a class.
One big thing that is missing from Matlab's handle-based OOP approach is that you cannot have the concept of a const reference/pointer as you can in C++ which does open up code to rather more bugs than you'd often like. If a class has a public property or function that changes its state then every copy of an object of that class will always have access to set those and you can't change that unfortunately. But that is just a coding issue that means you have to take that bit more care yourself.
Michael
Michael 2017년 4월 20일
Thanks for the feedback. I guess I didn't realize that handle-derived classes were intended to be usable in this way. This seems incredibly powerful, so I'm really glad to know that this is a reasonable thing to do in general.
In my particular application I can't really use classes alone because loop1 and loop2 will contain very different components (i.e. not all the same struct fields, which would mean not having all the same class properties), but I do see the point you're making.
Thank you both for the help!

댓글을 달려면 로그인하십시오.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Programming에 대해 자세히 알아보기

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by