|
[Sponsors] |
Convective term in heat equation for rotating solids |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
October 16, 2015, 18:55 |
Convective term in heat equation for rotating solids
|
#1 |
Member
VA
Join Date: Mar 2015
Location: ON, Canada
Posts: 30
Rep Power: 11 |
Hello FOAMers,
I recently created a solver for steady-state, incompressible flow, multi-region conjugate heat transfer in a single rotating frame. The equations that are solved in the fluid and solid regions are listed in one of the attached images (equations.png). The variable V is the velocity in the rotating frame and Vrot in the solid equation is the convective velocity due to relative motion in the rotating frame of reference. A cross-sectional view of the geometry can be found in the attached image. Symmetry is applied to the top and bottom walls and cyclic BCs are applied to the side walls. A volumetric heat source is applied. The rotating frame is fixed to the fluid region. The Solid-2 rotates with the fluid region. Whereas, "solid-1" remains stationary i.e. it rotates in the opposite direction relative to fluid region in the rotating frame. Hence, the convective term in the heat equation for this particular region is non-zero. I ran a couple of test cases to make sure if everything is in order but I noticed some strange temperature profiles in the circumferential direction in "solid-1" region near the solid-1 - heat zone interface (The dotted line in geometry.png shows the line where the temp. profile was plotted). In the case where the solid-1 region was rotating with the fluid region I saw a perfectly symmetric temperature profile in the circumferential direction, as expected (rotaing_Tprofile.png). However, when the solid-1 region was set to stationary or set to rotate in the opposite direction relative to friction plate in the rotating frame, I am seeing some strange results. Of course, the temp. profile in this case will not be symmetric due to the shear action of the solid-1 region at the solid-1 - fluid interface. However, I would expect the slope at the two ends of cyclic boundaries to be similar. I don't see that (nonrotaing_Tprofile.png). At this point, I am not sure if I missing something or if indeed the slopes won't be same at both ends. I believe this inconsistency arises from the convective term in the heat equation in solid region. I am not sure if the cyclic boundaries is the root cause or if my implementation of the heat equation with convective term is incorrect. The following code reflects the implementation of heat equation in the solid region: Code:
tmp<fvScalarMatrix> TEqn ( fvm::ddt(T) + fvm::div(((linearInterpolate(SRFS.U())) & solidRegions[i].Sf()),T) - fvm::laplacian(DT, T) == HeatSource ); TEqn().relax(); TEqn().solve(); Any suggestions/pointers would really help. Please let me know if you need more information. Thanks, Abishek Last edited by vabishek; October 16, 2015 at 18:58. Reason: typo |
|
October 24, 2015, 18:29 |
|
#2 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Hi Abishek,
As I mentioned in the answer I sent you to the PM you sent me, without a test case and access to the source code, I'm not able to diagnose problem. My guess is that the problem is not in the equations, but instead the problem might be in the boundary conditions that relate the static and the rotating regions. The other possibility is that the flux disturbances caused by mesh motion or by the MRF/SRF are not being taken into account for the heat distribution equation. Beyond this, my guess is that you should take a closer look into the tutorial "$FOAM_TUTORIALS/heatTransfer/chtMultiRegionSimpleFoam/heatExchanger" in the latest versions of OpenFOAM. Best regards, Bruno
__________________
|
|
November 8, 2015, 07:46 |
|
#3 | ||
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Hi Abishek,
Even though you've sent me the case via PM, I'll answer most of the questions here in public, without disclosing the case itself. Quote:
Quote:
The first problem I noticed is that the plot axis in the images do not match up to the dimensions you stated, namely "-0.0050563 to 0.0050563" doesn't match up with the plots that have "0.0 to 0.01xx"... unless you transposed the X axis by "+0.0050563". From what I can figure out, the problem doesn't seem to be in the solver itself, the temperature plot seems to be reflecting the flow being rotated as a result of the Coriolis effect. Since you still defined in the file "constant/S1SRFProperties" that the fluid domain is rotating, even though you defined the other two solids are stationary, but the domain itself is still rotating. In addition, there is nothing stating if the region "HeatSource" is static or not, i.e. "constant/S4SRFProperties" doesn't exist... so I guess it's using the definition that is in "constant/SRFProperties"? Which it is also rotating? In other words, even though the solids are not rotating, the heat source is rotating, so is the fluid domain, therefore the temperature distribution seems legitimate for the stationary solids, because the flow is being pushed against the heat source on one side and pulled away on the other side. By the way, the solver wasn't in the shared folder. But it's for the best, because I hopefully diagnosed this correctly after looking at the mesh, how the parts are connected and how the boundaries and SRF settings were defined. In addition, you might want to double-check if the diagnosis about the flow is correct. Use an already existing SRF solver to test the flow for the fluid part, i.e. to confirm if the flow profile with static solids is correct in your solver. Best regards, Bruno
__________________
|
|||
November 9, 2015, 12:52 |
|
#4 | |||||
Member
VA
Join Date: Mar 2015
Location: ON, Canada
Posts: 30
Rep Power: 11 |
Hi Bruno,
Thank you for looking into the issue. Quote:
Quote:
Quote:
If I understand you correctly, we don't see similar slopes at the boundaries because the flow is being pushed against the heat source on one side and pulled away on the other side? Quote:
Quote:
Thanks, Abishek |
||||||
November 15, 2015, 17:10 |
|
#5 |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Hi Abishek,
Attached are 2 images that shows the plot at time "10", because I didn't want to run the complete simulation:
The cyclic boundary condition only ensures that the values on each patch are identical. It does not ensure that the gradients near the patches are identical as well. I hope this makes things clearer? Best regards, Bruno |
|
November 16, 2015, 17:06 |
|
#6 | |
Member
VA
Join Date: Mar 2015
Location: ON, Canada
Posts: 30
Rep Power: 11 |
Quote:
Thank you for your explanation. Things are much clearer now. If I understand correctly, I need to write my own piece of code that would take care of gradients near the patches as part of the cyclic boundary condition? Any pointers? I know it is not that straightforward but I am trying to get my head around to see if something like that is feasible. Thanks, Abishek |
||
November 17, 2015, 17:12 |
|
#7 | |
Retired Super Moderator
Bruno Santos
Join Date: Mar 2009
Location: Lisbon, Portugal
Posts: 10,982
Blog Entries: 45
Rep Power: 128 |
Quote:
What I forgot to mention is that from what I could figure out, the results seemed physically correct. Have a look at the temperature profile in the fluid region and you'll also see that it's more intensely transferring heat more to one side than the other. Because if most of the solid regions are stationary and only one solid is rotating, then that means that there is practically a moving wall going over one side of the fluid region, resulting in a swirl effect being induced inside the fluid region. |
||
November 18, 2015, 16:04 |
|
#8 | |
Member
VA
Join Date: Mar 2015
Location: ON, Canada
Posts: 30
Rep Power: 11 |
Quote:
Thanks for your help on this, Bruno. I appreciate it. Regards, Abishek |
||
June 24, 2020, 12:10 |
|
#9 | |
Member
Join Date: Jan 2017
Posts: 71
Rep Power: 9 |
Quote:
How you calculated Vrot in your solver? |
||
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Convective heat loss out of a solar receiver construction | Lionel Trébuchon | CFX | 10 | April 6, 2014 21:25 |
Question about heat transfer coefficient setting for CFX | Anna Tian | CFX | 1 | June 16, 2013 07:28 |
how to troduce a source term in ICOFOAM solver's equation | sawyer86 | OpenFOAM Running, Solving & CFD | 0 | July 20, 2012 12:15 |
Large source term in species equation | MACFD | FLUENT | 4 | January 4, 2011 15:16 |
bouyancy term in epsilon equation | Michael | Main CFD Forum | 1 | June 25, 1999 11:20 |