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

**URL:** https://discourse.paraview.org/t/unable-to-properly-load-simulation-after-switch-to-the-point-view-mode/13167
**Category:** ParaView Support
**Created:** [November 2, 2023, 4:58am UTC](https://discourse.paraview.org/t/unable-to-properly-load-simulation-after-switch-to-the-point-view-mode/13167 "2023-11-02T04:58:35Z")
**Posts on this page:** 4
**Page:** 1

<div class="post-metadata">

### Author: ![zxc\_xc](https://discourse.paraview.org/user_avatar/discourse.paraview.org/zxc_xc/32/12754_2.png) [@zxc\_xc](https://discourse.paraview.org/u/zxc_xc)
#### Post date: [November 2, 2023, 4:58am UTC](https://discourse.paraview.org/t/unable-to-properly-load-simulation-after-switch-to-the-point-view-mode/13167/1 "2023-11-02T04:58:35Z")

</div>

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.

 ![cgi-bin_mmwebwx-bin_webwxgetmsgimg_&MsgID=8601249641014116155&skey=@crypt_c5dca08a_e87f384e0db602a7b9d447d66c751097&mmweb_appid=wx_webfilehelper](https://discourse.paraview.org/uploads/default/original/2X/7/7e3981f1e46f2425a44e8fedc61c9733fadcee02.jpeg)

 ![cgi-bin_mmwebwx-bin_webwxgetmsgimg_&MsgID=5182888067821590988&skey=@crypt_c5dca08a_e87f384e0db602a7b9d447d66c751097&mmweb_appid=wx_webfilehelper](https://discourse.paraview.org/uploads/default/original/2X/6/6399d97da22de031387d74fe1ed38400c208c1b1.jpeg)

 ![cgi-bin_mmwebwx-bin_webwxgetmsgimg_&MsgID=689111497628741941&skey=@crypt_c5dca08a_e87f384e0db602a7b9d447d66c751097&mmweb_appid=wx_webfilehelper](https://discourse.paraview.org/uploads/default/original/2X/c/cb302286b2d12a0adfc5fb9237f51eeebfe15ec5.jpeg)

 ![cgi-bin_mmwebwx-bin_webwxgetmsgimg_&MsgID=3184277281723392152&skey=@crypt_c5dca08a_e87f384e0db602a7b9d447d66c751097&mmweb_appid=wx_webfilehelper](https://discourse.paraview.org/uploads/default/original/2X/4/4257f571b8df126a489c625f96f256301922a107.jpeg)

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](http://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  
(  
);

// \*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\*\* //

---

<div class="post-metadata">

### Author: ![mwestphal](https://discourse.paraview.org/user_avatar/discourse.paraview.org/mwestphal/32/17_2.png) [@mwestphal](https://discourse.paraview.org/u/mwestphal)
#### Post date: [November 2, 2023, 9:31am UTC](https://discourse.paraview.org/t/unable-to-properly-load-simulation-after-switch-to-the-point-view-mode/13167/2 "2023-11-02T09:31:07Z")

</div>

please share your actual complete result folder

---

<div class="post-metadata">

### Author: ![zxc\_xc](https://discourse.paraview.org/user_avatar/discourse.paraview.org/zxc_xc/32/12754_2.png) [@zxc\_xc](https://discourse.paraview.org/u/zxc_xc)
#### Post date: [November 3, 2023, 6:42am UTC](https://discourse.paraview.org/t/unable-to-properly-load-simulation-after-switch-to-the-point-view-mode/13167/3 "2023-11-03T06:42:42Z")

</div>

Hi,

Here is the google drive link. Please check it.  
[https://drive.google.com/drive/folders/1aDmtTMFcoG-gVZUmtu\_kwucHu32xw5Qz?usp=sharing](https://drive.google.com/drive/folders/1aDmtTMFcoG-gVZUmtu_kwucHu32xw5Qz?usp=sharing)

Thanks

---

<div class="post-metadata">

### Author: ![mwestphal](https://discourse.paraview.org/user_avatar/discourse.paraview.org/mwestphal/32/17_2.png) [@mwestphal](https://discourse.paraview.org/u/mwestphal)
#### Post date: [November 6, 2023, 3:56pm UTC](https://discourse.paraview.org/t/unable-to-properly-load-simulation-after-switch-to-the-point-view-mode/13167/4 "2023-11-06T15:56:39Z")

</div>

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.
