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

protected scalarList

Register Blogs Community New Posts Updated Threads Search

Reply
 
LinkBack Thread Tools Search this Thread Display Modes
Old   April 16, 2018, 15:33
Default protected scalarList
  #1
Member
 
Joaquín Neira
Join Date: Oct 2017
Posts: 38
Rep Power: 8
cojua8 is on a distinguished road
Hello, I'm trying to add a new member to KinematicParcel class of type List<scalar> to store all (or a defined number) the previous dt.

for this, I added, in file KinematicParcel.H:

Code:
...
protected:
            //- dt storage [s]
            List<scalar> dtList_;

public:
            //- Return const access to the dtList
            inline List<scalar> dtList() const;

            //- Return access to the dtList
            inline List<scalar>& dtList();
...
In file KinematicParcelI.H:

Code:
...
template<class ParcelType>
inline Foam::List<Foam::scalar> Foam::KinematicParcel<ParcelType>::dtList() const
{
    return dtList_;
}

template<class ParcelType>
inline Foam::List<Foam::scalar>& Foam::KinematicParcel<ParcelType>::dtList()
{
    return dtList_;
}
...
the in file file KinematicParcel.C (move function), I need to do this:
Code:
...
        if (p.onBoundaryFace() && td.keepParticle)
        {
            if (isA<processorPolyPatch>(pbMesh[p.patch()]))
            {
                td.switchProcessor = true;
                std::cout << "cambio de procesador" << std::endl;
            }
        }
        
        p.age() += dt;
        p.dtList().append(dt); 

        td.cloud().functions().postMove(p, celli, dt, start, td.keepParticle);
    }

    return td.keepParticle;
...
This works fine when I don't run my problem in multiple processors, but when running it in parallel, after going to a new processor it crashes.


How should I include dtList in the constructors so that it works as I expect and doesn't reset and crash when running in parallel?

Also, how can I set a fixed sized based on variable NB (shown on files attached)?

thank you!
Attached Files
File Type: c KinematicParcel.C (12.6 KB, 0 views)
File Type: h KinematicParcel.H (19.0 KB, 3 views)
File Type: h KinematicParcelI.H (10.0 KB, 0 views)
File Type: c KinematicParcelIO.C (7.6 KB, 0 views)
File Type: h KinematicParcelTrackingDataI.H (3.2 KB, 0 views)
cojua8 is offline   Reply With Quote

Reply

Tags
list, parallel


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
Failure to start from latest time when BC stores scalarlist Phicau OpenFOAM Bugs 4 April 13, 2023 04:19
[snappyHexMesh] snappyHexMesh <-> dynamicMeshDict problem with protected cells Billy_16 OpenFOAM Meshing & Mesh Conversion 2 November 21, 2020 03:34
defining a protected variable blows the solution anishtain4 OpenFOAM Programming & Development 1 June 28, 2016 14:39
Combining 2 scalarList into scalarListList? CKH OpenFOAM Programming & Development 1 May 30, 2013 09:39


All times are GMT -4. The time now is 11:34.