We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent fd18329 commit afb1eeaCopy full SHA for afb1eea
src/LaMEM_io.jl
@@ -3,6 +3,8 @@ using Printf
3
using Glob
4
using Interpolations
5
6
+import Base: show, size
7
+
8
# LaMEM I/O
9
#
10
# These are routines that help to create a LaMEM marker files from a ParaviewData structure, which can be used to perform geodynamic simulations
@@ -53,6 +55,7 @@ struct LaMEM_grid <: AbstractGeneralGrid
53
55
Yn
54
56
Zn
57
end
58
+size(d::LaMEM_grid) = (d.nmark_x,d.nmark_y,d.nmark_z)
59
60
"""
61
ParaviewData(Grid::LaMEM_grid, fields::NamedTuple)
0 commit comments