|
[Sponsors] |
How to update surfaceScalarField boundary values in parallel cyclicBC? |
|
LinkBack | Thread Tools | Search this Thread | Display Modes |
September 7, 2022, 05:59 |
How to update surfaceScalarField boundary values in parallel cyclicBC?
|
#1 |
New Member
Sreehari Perumanath
Join Date: Jun 2022
Posts: 28
Rep Power: 4 |
Dear Foamers,
I'm new to use OF and I'm developing my own solver for my problem. In it, I have to define a 'surfaceScalarField payal' and I want to give pre-calculated values to it at every time step. To give values to the internal faces, it is simple. I give values to the boundary patch faces with: Code:
// to loop over all boundary faces forAll(payal.boundaryFieldRef(), patchID) { forAll(payal.boundaryFieldRef()[patchID],facei) { payal.boundaryFieldRef()[patchID][facei]=<aPre-calculatedValue>; } } 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]; } Many thanks and have a great day/weekend! Last edited by sreehahaha; September 22, 2022 at 05:46. |
|
Tags |
boundary patch, cyclic boundary condition, parallel code, surfacescalarfield, version 6 |
|
|
Similar Threads | ||||
Thread | Thread Starter | Forum | Replies | Last Post |
Update Pressure values for unsteady, multiphase, parallel - not updating properly | dhaya400 | Fluent UDF and Scheme Programming | 6 | June 7, 2021 02:43 |
Explicitly filtered LES | saeedi | Main CFD Forum | 16 | October 14, 2015 12:58 |
Radiation interface | hinca | CFX | 15 | January 26, 2014 18:11 |
An error has occurred in cfx5solve: | volo87 | CFX | 5 | June 14, 2013 18:44 |
parallel code | samiam1000 | SU2 | 3 | March 25, 2013 05:55 |