Skip to content

Commit c41c4e9

Browse files
committed
not much clean up in visualization
1 parent 100d41c commit c41c4e9

13 files changed

+13
-13
lines changed

Visualization/visualizeCellVectors.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function visualizeCellVectors(phi_cell)
1515
% SEE ALSO:
1616
%
1717

18-
% Copyright (c) 2012-2016 Ali Akbar Eftekhari
18+
% Written by Ali A. Eftekhari
1919
% See the license file
2020

2121
d = phi_cell.domain.dimension;

Visualization/visualizeCellVectors2D.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function visualizeCellVectors2D(phi_cell)
1515
% SEE ALSO:
1616
%
1717

18-
% Copyright (c) 2012-2016 Ali Akbar Eftekhari
18+
% Written by Ali A. Eftekhari
1919
% See the license file
2020

2121
x = phi_cell.domain.cellcenters.x;

Visualization/visualizeCellVectors3D.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function visualizeCellVectors3D(phi_cell)
1515
% SEE ALSO:
1616
%
1717

18-
% Copyright (c) 2012-2016 Ali Akbar Eftekhari
18+
% Written by Ali A. Eftekhari
1919
% See the license file
2020

2121
[X,Y,Z]=meshgrid(phi_cell.domain.cellcenters.y, phi_cell.domain.cellcenters.x, ...

Visualization/visualizeCellVectorsCylindrical3D.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function visualizeCellVectorsCylindrical3D(phi_cell)
1515
% SEE ALSO:
1616
%
1717

18-
% Copyright (c) 2012-2016 Ali Akbar Eftekhari
18+
% Written by Ali A. Eftekhari
1919
% See the license file
2020

2121
% domain_length = MeshStructure.numberofcells.*MeshStructure.cellsize;

Visualization/visualizeCellVectorsRadial2D.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function visualizeCellVectorsRadial2D(phi_cell)
1515
% SEE ALSO:
1616
%
1717

18-
% Copyright (c) 2012-2016 Ali Akbar Eftekhari
18+
% Written by Ali A. Eftekhari
1919
% See the license file
2020

2121
% phi_cell=gradientCellTerm(phi);

Visualization/visualizeCells.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function visualizeCells(phi)
1515
% SEE ALSO:
1616
%
1717

18-
% Copyright (c) 2012-2016 Ali Akbar Eftekhari
18+
% Written by Ali A. Eftekhari
1919
% See the license file
2020

2121
d = phi.domain.dimension;

Visualization/visualizeCells1D.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function visualizeCells1D(phi)
1515
% SEE ALSO:
1616
%
1717

18-
% Copyright (c) 2012-2016 Ali Akbar Eftekhari
18+
% Written by Ali A. Eftekhari
1919
% See the license file
2020

2121
x = [phi.domain.facecenters.x(1); phi.domain.cellcenters.x; phi.domain.facecenters.x(end)];

Visualization/visualizeCells2D.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function visualizeCells2D(phi)
1515
% SEE ALSO:
1616
%
1717

18-
% Copyright (c) 2012-2016 Ali Akbar Eftekhari
18+
% Written by Ali A. Eftekhari
1919
% See the license file
2020

2121
x = [phi.domain.facecenters.x(1); phi.domain.cellcenters.x; phi.domain.facecenters.x(end)];

Visualization/visualizeCells3D.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function visualizeCells3D(phi)
1515
% SEE ALSO:
1616
%
1717

18-
% Copyright (c) 2012-2016 Ali Akbar Eftekhari
18+
% Written by Ali A. Eftekhari
1919
% See the license file
2020

2121
% domain_length = MeshStructure.numberofcells.*MeshStructure.cellsize;

Visualization/visualizeCellsCylindrical3D.m

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ function visualizeCellsCylindrical3D(phi)
1515
% SEE ALSO:
1616
%
1717

18-
% Copyright (c) 2012-2016 Ali Akbar Eftekhari
18+
% Written by Ali A. Eftekhari
1919
% See the license file
2020

2121
% domain_length = MeshStructure.numberofcells.*MeshStructure.cellsize;

0 commit comments

Comments
 (0)