Neko 1.99.3
A portable framework for high-order spectral element flow simulations
Loading...
Searching...
No Matches
mean_field_output.f90
Go to the documentation of this file.
1! Copyright (c) 2020-2025, 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!
35 use num_types, only : rp
36 use field_list, only : field_list_t
39 use map_2d, only : map_2d_t
40 use map_1d, only : map_1d_t
41 use coefs, only : coef_t
43 use mean_field, only : mean_field_t
44 use output, only : output_t
45 use matrix, only : matrix_t
46 use fld_file, only : fld_file_t
47 implicit none
48 private
49
51 type, public, extends(output_t) :: mean_field_output_t
53 type(mean_field_t), pointer :: mean_fields(:)
55 type(field_list_t) :: fields
57 real(kind=rp) :: start_time = 0.0_rp
59 integer :: n_fields = 0
65 integer :: output_dim = 0
66 contains
68 procedure, pass(this) :: init => mean_field_output_init
70 procedure, pass(this) :: free => mean_field_output_free
72 procedure, pass(this) :: sample => mean_field_output_sample
73 end type mean_field_output_t
74
75contains
76
86 subroutine mean_field_output_init(this, mean_fields, n_fields, start_time, &
87 coef, avg_dir, name, path)
88 class(mean_field_output_t), intent(inout):: this
89 integer, intent(in) :: n_fields
90 type(mean_field_t), intent(inout), target :: mean_fields(n_fields)
91 type(coef_t), intent(inout) :: coef
92 character(len=*), intent(in) :: avg_dir
93 character(len=*), intent(in), optional :: name
94 character(len=*), intent(in), optional :: path
95 real(kind=rp), intent(in) :: start_time
96 character(len=1024) :: fname
97 integer :: i
98
99 this%start_time = start_time
100
101 if (trim(avg_dir) .eq. 'none' .or. &
102 trim(avg_dir) .eq. 'x' .or.&
103 trim(avg_dir) .eq. 'y' .or.&
104 trim(avg_dir) .eq. 'z'&
105 ) then
106 if (present(name) .and. present(path)) then
107 fname = trim(path) // trim(name) // '.fld'
108 else if (present(name)) then
109 fname = trim(name) // '.fld'
110 else if (present(path)) then
111 fname = trim(path) // 'user_stats.fld'
112 else
113 fname = 'user_stats.fld'
114 end if
115
116 this%output_dim = 3
117
118 if (trim(avg_dir) .eq. 'x' .or.&
119 trim(avg_dir) .eq. 'y' .or.&
120 trim(avg_dir) .eq. 'z' ) then
121 call this%map_2d%init_char(coef, avg_dir, 1e-7_rp)
122 this%output_dim = 2
123 end if
124 else
125 if (present(name) .and. present(path)) then
126 fname = trim(path) // trim(name) // '.csv'
127 else if (present(name)) then
128 fname = trim(name) // '.csv'
129 else if (present(path)) then
130 fname = trim(path) // 'user_stats.csv'
131 else
132 fname = 'user_stats.csv'
133 end if
134 call this%map_1d%init_char(coef, avg_dir, 1e-7_rp)
135 this%output_dim = 1
136 end if
137
138 call this%init_base(fname)
139 select type (ft => this%file_%file_type)
140 type is (fld_file_t)
141 ft%skip_pressure = .false.
142 ft%skip_velocity = .false.
143 ft%skip_temperature = .false.
144 end select
145
146 call this%fields%init(n_fields)
147 this%n_fields = n_fields
148 this%mean_fields => mean_fields
149 do i = 1, n_fields
150 this%fields%items(i)%ptr => this%mean_fields(i)%mf
151 end do
152
153 end subroutine mean_field_output_init
154
156 subroutine mean_field_output_free(this)
157 class(mean_field_output_t), intent(inout) :: this
158
159 call this%free_base()
160
161 nullify(this%mean_fields)
162 call this%map_1d%free()
163 call this%map_2d%free()
164 call this%fields%free()
165
166 end subroutine mean_field_output_free
167
169 subroutine mean_field_output_sample(this, t)
170 class(mean_field_output_t), intent(inout) :: this
171 real(kind=rp), intent(in) :: t
172 integer :: i
173 type(fld_file_data_t) :: output_2d
174 type(matrix_t) :: avg_output_1d
175
176 associate(out_fields => this%fields%items)
177 if (t .ge. this%start_time) then
178 if ( neko_bcknd_device .eq. 1) then
179 do i = 1, size(out_fields)
180 call device_memcpy(out_fields(i)%ptr%x, out_fields(i)%ptr%x_d,&
181 out_fields(i)%ptr%dof%size(), device_to_host, &
182 sync = (i .eq. size(out_fields))) ! Sync on last field
183 end do
184 end if
185 if (this%output_dim .eq. 1) then
186 call this%map_1d%average_planes(avg_output_1d, &
187 this%fields)
188 call this%file_%write(avg_output_1d, t)
189 else if (this%output_dim .eq. 2) then
190 call this%map_2d%average(output_2d, this%fields)
191 call this%file_%write(output_2d, t)
192 else
193 call this%file_%write(this%fields, t)
194 end if
195 do i = 1, this%n_fields
196 call this%mean_fields(i)%reset()
197 end do
198 end if
199 end associate
200
201 end subroutine mean_field_output_sample
202
203end module mean_field_output
Copy data between host and device (or device and device)
Definition device.F90:71
Coefficients.
Definition coef.f90:34
Device abstraction, common interface for various accelerators.
Definition device.F90:34
integer, parameter, public device_to_host
Definition device.F90:47
Simple module to handle fld file series. Provides an interface to the different fields sotred in a fl...
NEKTON fld file format.
Definition fld_file.f90:35
Creates a 1d GLL point map along a specified direction based on the connectivity in the mesh.
Definition map_1d.f90:3
Maps a 3D dofmap to a 2D spectral element grid.
Definition map_2d.f90:3
Defines a matrix.
Definition matrix.f90:34
Defines an output for a list of mean fields.
subroutine mean_field_output_free(this)
Destructor.
subroutine mean_field_output_init(this, mean_fields, n_fields, start_time, coef, avg_dir, name, path)
Constructor.
subroutine mean_field_output_sample(this, t)
Sample the mean solution at time t and reset.
Implements mean_field_t.
Build configurations.
integer, parameter neko_bcknd_device
integer, parameter, public rp
Global precision used in computations.
Definition num_types.f90:12
Defines an output.
Definition output.f90:34
Coefficients defined on a given (mesh, ) tuple. Arrays use indices (i,j,k,e): element e,...
Definition coef.f90:63
field_list_t, To be able to group fields together
Interface for NEKTON fld files.
Definition fld_file.f90:66
Type that encapsulates a mapping from each gll point in the mesh to its corresponding (global) GLL po...
Definition map_1d.f90:27
Computes the temporal mean of a field.
Output for a list of mean fields.
Abstract type defining an output type.
Definition output.f90:41