Skip to content

Commit 9c63be2

Browse files
committed
Commenting the code
1 parent 6011a4b commit 9c63be2

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

src/Inclusions.jl

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
"""
22
Set of Inclusions
33
"""
4+
abstract type Inclusion end
45

56
struct Box <: Inclusion
67
size::Vector{Float64} # size of the RVE

src/RVEs.jl

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,14 +18,14 @@ export createMesh!
1818
export saveMesh
1919
export ShowInfo
2020

21-
abstract type Inclusion end
2221

2322
struct RVE
2423
size::Vector{Float64} # size of the RVE
2524
periodicityFlags::Vector{Int64} # periodicity flags
2625
origin::Vector{Float64} # set cell origin to [0,0,0]
2726
meshsize::Float64
2827
end
28+
2929

3030
include("Inclusions.jl")
3131
include("Periodicity.jl")
@@ -69,7 +69,6 @@ function _isinboundary(rve::RVE, b::NTuple{6,Float64})
6969
return out, location
7070
end
7171

72-
7372

7473
function _getBoundingBox(rve::RVE)
7574
xmin = rve.origin[1]

0 commit comments

Comments
 (0)