Unable to properly load simulation after switch to the "point" view mode

Hi,

I am attempting to visualize my openfoam simulation data. In the “cube” mode, the temperature data is displayed correctly. However, when I switch to the “point” view, all the data disappears. Upon switching back to the “cube” view, the temperature data can no longer be viewed correctly either.

I used “paraFoam” to open the ParaView. The blockMeshDict file is attached. Is it because I have too many grids? Or is it because my CPU memory is too small?

Cheers


/--------------------------------- C++ -----------------------------------
| ========= | |
| \ / F ield | OpenFOAM: The Open Source CFD Toolbox |
| \ / O peration | Version: v2306 |
| \ / A nd | Website: www.openfoam.com |
| \/ M anipulation | |
*---------------------------------------------------------------------------*/
FoamFile
{
version 2.0;
format ascii;
class dictionary;
object blockMeshDict;
}
// * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * * //

scale 1;

vertices
(
(0 0 0) //0
(20 0 0) //1
(30 0 0) //2
(100 0 0) //3
(100 500 0) //4
(30 500 0) //5
(20 500 0) //6
(0 500 0) //7
(0 0 100) //8
(70 0 100) //9
(80 0 100) //10
(100 0 100) //11
(100 500 100) //12
(80 500 100) //13
(70 500 100) //14
(0 500 100) //15
);

blocks
(
hex (0 1 6 7 8 9 14 15) (10 5000 10) simpleGrading (1 1 1)
hex (1 2 5 6 9 10 13 14) (2 5000 10) simpleGrading (1 1 1)
hex (2 3 4 5 10 11 12 13) (10 5000 10) simpleGrading (1 1 1)
);

edges
(
);

boundary
(
floor
{
type wall;
faces
(
(0 1 9 8)
(2 3 11 10)
);
}

 road
{
    type wall;
    faces
    (
        (1 2 10 9)
    );
}


ceiling
{
    type wall;
    faces
    (
        (6 7 15 14)
        (5 6 14 13)
        (4 5 13 12)
    );
}

sideWalls
{
    type wall;
    faces
    (
        (0 7 6 1)
        (1 6 5 2)
        (2 5 4 3)
        (3 4 12 11)
        (10 11 12 13)
        (9 10 13 14)
        (8 9 14 15)
        (0 8 15 7)
    );
}

frontAndBack
{
    type empty;
    faces
    (
    );
}

);

mergePatchPairs
(
);

// ************************************************************************* //

please share your actual complete result folder

Hi,

Here is the google drive link. Please check it.
https://drive.google.com/drive/folders/1aDmtTMFcoG-gVZUmtu_kwucHu32xw5Qz?usp=sharing

Thanks

This is just how your data is. Your cell data (what you call CubeView) contains data that is almost always the same value. There is an issue in your data generation process.