@@ -1398,15 +1398,15 @@ SchemeTMz::performNSteps (time_step startStep, time_step numberTimeSteps, int du
13981398 {
13991399 BMPDumper<GridCoordinate2D> dumperEz;
14001400 dumperEz.init (t, CURRENT , processId, " 2D-TMz-in-time-Ez" );
1401- dumperEz.dumpGrid (Ez);
1401+ dumperEz.dumpGrid (Ez, GridCoordinate2D ( 0 ), Ez. getSize () );
14021402
14031403 BMPDumper<GridCoordinate2D> dumperHx;
14041404 dumperHx.init (t, CURRENT , processId, " 2D-TMz-in-time-Hx" );
1405- dumperHx.dumpGrid (Hx);
1405+ dumperHx.dumpGrid (Hx, GridCoordinate2D ( 0 ), Hx. getSize () );
14061406
14071407 BMPDumper<GridCoordinate2D> dumperHy;
14081408 dumperHy.init (t, CURRENT , processId, " 2D-TMz-in-time-Hy" );
1409- dumperHy.dumpGrid (Hy);
1409+ dumperHy.dumpGrid (Hy, GridCoordinate2D ( 0 ), Hy. getSize () );
14101410 }
14111411 }
14121412 }
@@ -1415,15 +1415,15 @@ SchemeTMz::performNSteps (time_step startStep, time_step numberTimeSteps, int du
14151415 {
14161416 BMPDumper<GridCoordinate2D> dumperEz;
14171417 dumperEz.init (stepLimit, CURRENT , processId, " 2D-TMz-in-time-Ez" );
1418- dumperEz.dumpGrid (Ez);
1418+ dumperEz.dumpGrid (Ez, GridCoordinate2D ( 0 ), Ez. getSize () );
14191419
14201420 BMPDumper<GridCoordinate2D> dumperHx;
14211421 dumperHx.init (stepLimit, CURRENT , processId, " 2D-TMz-in-time-Hx" );
1422- dumperHx.dumpGrid (Hx);
1422+ dumperHx.dumpGrid (Hx, GridCoordinate2D ( 0 ), Hx. getSize () );
14231423
14241424 BMPDumper<GridCoordinate2D> dumperHy;
14251425 dumperHy.init (stepLimit, CURRENT , processId, " 2D-TMz-in-time-Hy" );
1426- dumperHy.dumpGrid (Hy);
1426+ dumperHy.dumpGrid (Hy, GridCoordinate2D ( 0 ), Hy. getSize () );
14271427
14281428 // for (int i = 0; i < EzSize.getX (); ++i)
14291429 // {
@@ -1678,7 +1678,7 @@ SchemeTMz::performAmplitudeSteps (time_step startStep, int dumpRes)
16781678 {
16791679 BMPDumper<GridCoordinate2D> dumper;
16801680 dumper.init (t, CURRENT , processId, " 2D-TMz-amplitude-Ez" );
1681- dumper.dumpGrid (EzAmplitude);
1681+ dumper.dumpGrid (EzAmplitude, GridCoordinate2D ( 0 ), EzAmplitude. getSize () );
16821682
16831683 // FieldValue norm = 0;
16841684 //
@@ -1802,7 +1802,7 @@ SchemeTMz::performSteps (int dumpRes)
18021802 {
18031803 BMPDumper<GridCoordinate2D> dumper;
18041804 dumper.init (totalStep, ALL , processId, " 2D-TMz-in-time" );
1805- dumper.dumpGrid (Ez);
1805+ dumper.dumpGrid (Ez, GridCoordinate2D ( 0 ), Ez. getSize () );
18061806 }
18071807#else /* CUDA_ENABLED */
18081808
@@ -1892,7 +1892,7 @@ SchemeTMz::initGrids ()
18921892
18931893 BMPDumper<GridCoordinate2D> dumper;
18941894 dumper.init (0 , CURRENT , processId, " Eps" );
1895- dumper.dumpGrid (Eps);
1895+ dumper.dumpGrid (Eps, GridCoordinate2D ( 0 ), Eps. getSize () );
18961896
18971897 for (int i = 0 ; i < OmegaPE.getSize ().getX (); ++i)
18981898 {
@@ -2051,16 +2051,16 @@ SchemeTMz::initGrids ()
20512051 }
20522052
20532053 dumper.init (0 , CURRENT , processId, " OmegaPE" );
2054- dumper.dumpGrid (OmegaPE);
2054+ dumper.dumpGrid (OmegaPE, GridCoordinate2D ( 0 ), OmegaPE. getSize () );
20552055
20562056 dumper.init (0 , CURRENT , processId, " OmegaPM" );
2057- dumper.dumpGrid (OmegaPM);
2057+ dumper.dumpGrid (OmegaPM, GridCoordinate2D ( 0 ), OmegaPM. getSize () );
20582058
20592059 dumper.init (0 , CURRENT , processId, " GammaE" );
2060- dumper.dumpGrid (GammaE);
2060+ dumper.dumpGrid (GammaE, GridCoordinate2D ( 0 ), GammaE. getSize () );
20612061
20622062 dumper.init (0 , CURRENT , processId, " GammaM" );
2063- dumper.dumpGrid (GammaM);
2063+ dumper.dumpGrid (GammaM, GridCoordinate2D ( 0 ), GammaM. getSize () );
20642064
20652065 for (int i = 0 ; i < Mu.getSize ().getX (); ++i)
20662066 {
@@ -2205,19 +2205,19 @@ SchemeTMz::initGrids ()
22052205 {
22062206 BMPDumper<GridCoordinate2D> dumper;
22072207 dumper.init (0 , CURRENT , processId, " SigmaX" );
2208- dumper.dumpGrid (SigmaX);
2208+ dumper.dumpGrid (SigmaX, GridCoordinate2D ( 0 ), SigmaX. getSize () );
22092209 }
22102210
22112211 {
22122212 BMPDumper<GridCoordinate2D> dumper;
22132213 dumper.init (0 , CURRENT , processId, " SigmaY" );
2214- dumper.dumpGrid (SigmaY);
2214+ dumper.dumpGrid (SigmaY, GridCoordinate2D ( 0 ), SigmaY. getSize () );
22152215 }
22162216
22172217 {
22182218 BMPDumper<GridCoordinate2D> dumper;
22192219 dumper.init (0 , CURRENT , processId, " SigmaZ" );
2220- dumper.dumpGrid (SigmaZ);
2220+ dumper.dumpGrid (SigmaZ, GridCoordinate2D ( 0 ), SigmaZ. getSize () );
22212221 }
22222222
22232223 for (int i = 0 ; i < Ez.getSize ().getX (); ++i)
0 commit comments