@@ -102,7 +102,7 @@ function SphereSpectralElementSpace(
102
102
return Spaces. SpectralElementSpace2D (topology, quad)
103
103
end
104
104
105
- function ExtrudedCenterFiniteDifferenceSpace (
105
+ function CenterExtrudedFiniteDifferenceSpace (
106
106
:: Type{FT} ;
107
107
zelem = 10 ,
108
108
context = ClimaComms. SingletonCommsContext (),
@@ -128,13 +128,13 @@ function ExtrudedCenterFiniteDifferenceSpace(
128
128
return Spaces. ExtrudedFiniteDifferenceSpace (hspace, vspace)
129
129
end
130
130
131
- function ExtrudedFaceFiniteDifferenceSpace (
131
+ function FaceExtrudedFiniteDifferenceSpace (
132
132
:: Type{FT} ;
133
133
zelem = 10 ,
134
134
context = ClimaComms. SingletonCommsContext (),
135
135
) where {FT}
136
- cspace = ExtrudedCenterFiniteDifferenceSpace (FT; zelem, context)
137
- return Spaces. ExtrudedFaceFiniteDifferenceSpace (cspace)
136
+ cspace = CenterExtrudedFiniteDifferenceSpace (FT; zelem, context)
137
+ return Spaces. ExtrudedFiniteDifferenceSpace {Spaces.CellFace} (cspace)
138
138
end
139
139
140
140
function all_spaces (
@@ -152,8 +152,8 @@ function all_spaces(
152
152
ColumnCenterFiniteDifferenceSpace (FT; zelem, context),
153
153
ColumnFaceFiniteDifferenceSpace (FT; zelem, context),
154
154
SphereSpectralElementSpace (FT; context),
155
- ExtrudedCenterFiniteDifferenceSpace (FT; zelem, context),
156
- # ExtrudedFaceFiniteDifferenceSpace (FT; zelem, context), # errors on sum
155
+ CenterExtrudedFiniteDifferenceSpace (FT; zelem, context),
156
+ # FaceExtrudedFiniteDifferenceSpace (FT; zelem, context), # errors on sum
157
157
# TODO : incorporate this list of spaces somehow:
158
158
# space_vf = Spaces.CenterFiniteDifferenceSpace(topology_z)
159
159
# space_ifh = Spaces.SpectralElementSpace1D(topology_x, quad)
0 commit comments