Skip to content

Commit 89e141e

Browse files
committed
wip: functioning flux calculations
1 parent 1b17692 commit 89e141e

File tree

10 files changed

+166
-724
lines changed

10 files changed

+166
-724
lines changed

src/Breeze.jl

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,8 +20,11 @@ export
2020

2121
using Oceananigans
2222
using Oceananigans.Grids: znode
23+
using Oceananigans.Architectures: array_type, CPU, GPU
24+
using Oceananigans: field
2325

2426
export
27+
array_type,
2528
CPU, GPU,
2629
Center, Face, Periodic, Bounded, Flat,
2730
RectilinearGrid,
@@ -35,6 +38,7 @@ export
3538
FluxBoundaryCondition, ValueBoundaryCondition, GradientBoundaryCondition,
3639
OpenBoundaryCondition, PerturbationAdvection, FieldBoundaryConditions,
3740
Field, CenterField, XFaceField, YFaceField, ZFaceField,
41+
field,
3842
Average, Integral,
3943
BackgroundField, interior, set!, compute!, regrid!,
4044
Forcing,
@@ -49,6 +53,10 @@ export
4953
∂x, ∂y, ∂z, @at, KernelFunctionOperation,
5054
prettytime
5155

56+
include("utils_grid.jl")
57+
export
58+
ncols
59+
5260
include("Thermodynamics/Thermodynamics.jl")
5361
using .Thermodynamics
5462

src/Radiation/Radiation.jl

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,10 +2,8 @@ module Radiation
22

33
export
44
AbstractRadiationModel,
5-
GrayRadiationModel,
6-
update_radative_fluxes!
5+
GrayRadiationModel
76

8-
include("utils_grid.jl")
97
include("rrtmgp_interface.jl")
108
include("radiation_model.jl")
119
include("radiation_model_gray.jl")

0 commit comments

Comments
 (0)