Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -51,9 +51,10 @@ a feature of the forthcoming Fortran 2028 standard.
Examples
--------
### Highlights
Formal now supports two-dimensional (2D) operators that compute the gradient (`.grad.`) of a
scalar field, the divergence (`.div.`) of vector field, and the arithmetic operators required
for expressing the advection/diffusion partial differential equation (PDE)
Formal now supports 2D and 3D operators that compute the gradient (`.grad.`) of
a scalar field, the divergence (`.div.`) of a vector field, and the arithmetic
operators required for expressing the advection/diffusion partial differential
equation (PDE)

$$ \partial s / \partial t = \nabla \cdot (D \nabla s) - \nabla \cdot (\vec{v}s)$$

Expand Down
2 changes: 1 addition & 1 deletion src/formal/scalar_3D_s.F90
Original file line number Diff line number Diff line change
Expand Up @@ -243,7 +243,7 @@
,y => self%grid(y_dir) &
,z => self%grid(z_dir) &
)
call_julienne_assert(num_points .equalsExpected. size(x)*size(y))
call_julienne_assert(num_points .equalsExpected. size(x)*size(y)*size(z))

associate(num_blank_lines => size(y)-1)
allocate(lines(size(header) + num_points + num_blank_lines))
Expand Down
Loading