Neko  0.8.1
A portable framework for high-order spectral element flow simulations
vorticity.f90
Go to the documentation of this file.
1 ! Copyright (c) 2023, The Neko Authors
2 ! All rights reserved.
3 !
4 ! Redistribution and use in source and binary forms, with or without
5 ! modification, are permitted provided that the following conditions
6 ! are met:
7 !
8 ! * Redistributions of source code must retain the above copyright
9 ! notice, this list of conditions and the following disclaimer.
10 !
11 ! * Redistributions in binary form must reproduce the above
12 ! copyright notice, this list of conditions and the following
13 ! disclaimer in the documentation and/or other materials provided
14 ! with the distribution.
15 !
16 ! * Neither the name of the authors nor the names of its
17 ! contributors may be used to endorse or promote products derived
18 ! from this software without specific prior written permission.
19 !
20 ! THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 ! "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 ! LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
23 ! FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
24 ! COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
25 ! INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
26 ! BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
27 ! LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
28 ! CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
29 ! LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
30 ! ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
31 ! POSSIBILITY OF SUCH DAMAGE.
32 !
33 !
35 
36 module vorticity
37  use num_types, only : rp, dp, sp
38  use json_module, only : json_file
41  use field, only : field_t
42  use operators, only : curl
43  use case, only : case_t
46  use field_writer, only : field_writer_t
47  implicit none
48  private
49 
52  type, public, extends(simulation_component_t) :: vorticity_t
54  type(field_t), pointer :: u
56  type(field_t), pointer :: v
58  type(field_t), pointer :: w
59 
61  type(field_t), pointer :: omega_x
63  type(field_t), pointer :: omega_y
65  type(field_t), pointer :: omega_z
66 
68  type(field_t) :: temp1
70  type(field_t) :: temp2
71 
73  type(field_writer_t) :: writer
74 
75  contains
77  procedure, pass(this) :: init => vorticity_init_from_json
79  procedure, pass(this) :: init_from_attributes => &
82  procedure, pass(this) :: free => vorticity_free
84  procedure, pass(this) :: compute_ => vorticity_compute
85  end type vorticity_t
86 
87 contains
88 
90  subroutine vorticity_init_from_json(this, json, case)
91  class(vorticity_t), intent(inout) :: this
92  type(json_file), intent(inout) :: json
93  class(case_t), intent(inout), target :: case
94  character(len=:), allocatable :: filename
95  character(len=:), allocatable :: precision
96  character(len=20) :: fields(3)
97 
98  ! Add fields keyword to the json so that the field_writer picks it up.
99  ! Will also add fields to the registry.
100  fields(1) = "omega_x"
101  fields(2) = "omega_y"
102  fields(3) = "omega_z"
103 
104  call json%add("fields", fields)
105 
106  call this%init_base(json, case)
107  call this%writer%init(json, case)
108 
110  end subroutine vorticity_init_from_json
111 
114  class(vorticity_t), intent(inout) :: this
115 
116  this%u => neko_field_registry%get_field_by_name("u")
117  this%v => neko_field_registry%get_field_by_name("v")
118  this%w => neko_field_registry%get_field_by_name("w")
119 
120  this%omega_x => neko_field_registry%get_field_by_name("omega_x")
121  this%omega_y => neko_field_registry%get_field_by_name("omega_y")
122  this%omega_z => neko_field_registry%get_field_by_name("omega_z")
123 
124  call this%temp1%init(this%u%dof)
125  call this%temp2%init(this%u%dof)
126 
127  end subroutine vorticity_init_from_attributes
128 
130  subroutine vorticity_free(this)
131  class(vorticity_t), intent(inout) :: this
132  call this%free_base()
133  call this%temp1%free()
134  call this%temp2%free()
135  end subroutine vorticity_free
136 
140  subroutine vorticity_compute(this, t, tstep)
141  class(vorticity_t), intent(inout) :: this
142  real(kind=rp), intent(in) :: t
143  integer, intent(in) :: tstep
144 
145  call curl(this%omega_x, this%omega_y, this%omega_z, this%u, this%v, &
146  this%w, this%temp1, this%temp2, this%case%fluid%c_Xh)
147  end subroutine vorticity_compute
148 
149 end module vorticity
Retrieves a parameter by name or assigns a provided default value. In the latter case also adds the m...
Definition: json_utils.f90:53
Retrieves a parameter by name or throws an error.
Definition: json_utils.f90:44
Defines a simulation case.
Definition: case.f90:34
Defines a registry for storing solution fields.
type(field_registry_t), target, public neko_field_registry
Global field registry.
Implements the field_writer_t type.
Defines a field.
Definition: field.f90:34
Implements fld_file_output_t.
Utilities for retrieving parameters from the case files.
Definition: json_utils.f90:34
integer, parameter, public dp
Definition: num_types.f90:9
integer, parameter, public sp
Definition: num_types.f90:8
integer, parameter, public rp
Global precision used in computations.
Definition: num_types.f90:12
Operators.
Definition: operators.f90:34
subroutine, public curl(w1, w2, w3, u1, u2, u3, work1, work2, coef)
Definition: operators.f90:234
Simulation components are objects that encapsulate functionality that can be fit to a particular comp...
Implements the vorticity_t type.
Definition: vorticity.f90:36
subroutine vorticity_init_from_attributes(this)
Actual constructor.
Definition: vorticity.f90:114
subroutine vorticity_free(this)
Destructor.
Definition: vorticity.f90:131
subroutine vorticity_compute(this, t, tstep)
Compute the vorticity field.
Definition: vorticity.f90:141
subroutine vorticity_init_from_json(this, json, case)
Constructor from json.
Definition: vorticity.f90:91
A simulation component that writes a 3d field to a file.
A simple output saving a list of fields to a .fld file.
Base abstract class for simulation components.
A simulation component that computes the vorticity field. Added to the field registry as omega_x,...
Definition: vorticity.f90:52