CFD Online Logo CFD Online URL
www.cfd-online.com
[Sponsors]
Home > Forums > Software User Forums > OpenFOAM > OpenFOAM Programming & Development

Boundary conditions for a surfaceScalarField

Register Blogs Community New Posts Updated Threads Search

 
 
LinkBack Thread Tools Search this Thread Display Modes
Prev Previous Post   Next Post Next
Old   September 22, 2022, 04:50
Default Boundary conditions for a surfaceScalarField
  #1
New Member
 
Sreehari Perumanath
Join Date: Jun 2022
Posts: 28
Rep Power: 3
sreehahaha is on a distinguished road
Dear Foamers,

I'm new to use OF and I'm developing my own solver for my problem. I have a simple cubic geometry. In it, I have to define a 'surfaceScalarField payal' and I want to give pre-calculated values to it at every time step.

It is easy to give values to the internal faces, so I'll skip that here. I give values to the boundary patches with:
Code:
// to loop over all boundary faces
forAll(payal.boundaryFieldRef(), patchID)
{
	forAll(payal.boundaryFieldRef()[patchID],facei) 
   {
   	payal.boundaryFieldRef()[patchID][facei]=<aPre-calculatedValue>;
   }
}
But I use cyclicBC, so I have to do something like below for two neighbourPatches with patchIDs 0,1:
Code:
// set values on patchID=1 same as patchID=0, because cyclicBC between patches 0,1
forAll(payal.boundaryFieldRef()[1],facei)
{
	payal.boundaryFieldRef()[1][facei]=payal.boundaryFieldRef()[0][facei];
}
and likewise for other pairs of neighbourPatches. This works fine in a serial run. But, I imagine this would be problematic in a parallel run, as both patches may be dealt with by different processes. Can somebody please suggest an elegant way which works for both serial and parallel runs? It would be very helpful.

Many thanks and have a great day/weekend!
sreehahaha is offline   Reply With Quote

 

Tags
correctboundaryconditions, cyclic boundary, surfacescalarfield


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
sliding mesh problem in CFX Saima CFX 46 September 11, 2021 07:38
Radiation in semi-transparent media with surface-to-surface model? mpeppels CFX 11 August 22, 2019 07:30
Multiphase flow - incorrect velocity on inlet Mike_Tom CFX 6 September 29, 2016 01:27
Basic Nozzle-Expander Design karmavatar CFX 20 March 20, 2016 08:44
Question about heat transfer coefficient setting for CFX Anna Tian CFX 1 June 16, 2013 06:28


All times are GMT -4. The time now is 10:24.