Skip to content

Commit bd7067a

Browse files
committed
add git blame
1 parent fb50859 commit bd7067a

File tree

3 files changed

+3
-2
lines changed

3 files changed

+3
-2
lines changed

examples/2D_lungwave_horizontal/case.py

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,6 @@
138138
'acoustic(1)%mag' : 100.0*patmos_n,# magnitude
139139
'acoustic(1)%length' : 45.0*dlengy, # pulse length
140140
'acoustic(1)%support' : 2, # 2D semi infinite plane (x: -inf,inf; y:-len/2, len/2)
141-
'acoustic(1)%support_width' : 30,
142141
'acoustic(1)%loc(1)' : 0.7*dlengy, # x_center of the domain
143142
'acoustic(1)%loc(2)' : dlengy/2, # upper boundary of the domain
144143
'acoustic(1)%dir' : -math.pi, # direction: -pi/2

examples/3D_lungwave/case.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -196,7 +196,7 @@
196196
'patch_icpp(2)%length_x' : 2000,#dlengx,#dlengx/2.+2, #
197197
'patch_icpp(2)%length_y' : dlengy,
198198
'patch_icpp(2)%length_z' : dlengz,
199-
'patch_icpp(2)%a2)' : interface_amp,
199+
'patch_icpp(2)%a(2)' : interface_amp,
200200
'patch_icpp(2)%vel(1)' : 0.E+00,
201201
'patch_icpp(2)%vel(2)' : 0.0,
202202
'patch_icpp(2)%vel(3)' : 0.0,

src/simulation/m_derived_variables.f90

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -156,9 +156,11 @@ subroutine s_compute_derived_variables(t_step)
156156
end do
157157
end do
158158
end do
159+
159160
call s_derive_center_of_mass(q_prim_ts(3)%vf, c_mass)
160161

161162
call s_write_probe_files(t_step, q_cons_ts(1)%vf, accel_mag)
163+
162164
call s_write_com_files(t_step, c_mass)
163165
end if
164166

0 commit comments

Comments
 (0)