Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/variable dt #1148

Merged
merged 28 commits into from
Mar 4, 2024
Merged
Changes from 1 commit
Commits
Show all changes
28 commits
Select commit Hold shift + click to select a range
ffc461a
Add files via upload
Shiyu-Sandy-Du Feb 5, 2024
097b3e4
Merge branch 'ExtremeFLOW:develop' into variable_time_step
Shiyu-Sandy-Du Feb 20, 2024
370e215
Add files via upload
Shiyu-Sandy-Du Feb 20, 2024
9e863ef
Add files via upload
Shiyu-Sandy-Du Feb 20, 2024
6125846
Update fluid_scheme.f90
Shiyu-Sandy-Du Feb 20, 2024
c5e2855
Merge pull request #1147 from Shiyu-Sandy-Du/variable_time_step
Shiyu-Sandy-Du Feb 20, 2024
ad346f0
Update simulation.f90
Shiyu-Sandy-Du Feb 20, 2024
6ba9a1d
Add files via upload
Shiyu-Sandy-Du Feb 25, 2024
4a1fc46
Update src/simulation.f90
Shiyu-Sandy-Du Feb 26, 2024
c3582b7
Update src/simulation.f90
Shiyu-Sandy-Du Feb 26, 2024
338a047
Update src/simulation.f90
Shiyu-Sandy-Du Feb 26, 2024
3f8d464
Update src/simulation.f90
Shiyu-Sandy-Du Feb 26, 2024
3787f46
Update src/simulation.f90
Shiyu-Sandy-Du Feb 26, 2024
bf32324
Update simulation.f90
Shiyu-Sandy-Du Feb 26, 2024
73eee65
Update src/simulation.f90
Shiyu-Sandy-Du Feb 26, 2024
cb0f637
Update src/simulation.f90
Shiyu-Sandy-Du Feb 26, 2024
13e5f01
Update src/simulation.f90
Shiyu-Sandy-Du Feb 26, 2024
562b9e0
make time step controller into a type and avoid interact with json fi…
Shiyu-Sandy-Du Feb 27, 2024
f288a57
delete comments
Shiyu-Sandy-Du Feb 27, 2024
2e96374
Merge pull request #1157 from Shiyu-Sandy-Du/feature/variable_dt
Shiyu-Sandy-Du Feb 27, 2024
532ba7b
Update time_step_controller.f90
Shiyu-Sandy-Du Feb 28, 2024
e1ca98f
compiling issues
Shiyu-Sandy-Du Feb 28, 2024
8180e01
change on .depends
Shiyu-Sandy-Du Feb 28, 2024
c5cbae2
update case-file.md
Shiyu-Sandy-Du Feb 28, 2024
83ec874
update case-file.md
Shiyu-Sandy-Du Feb 28, 2024
90ba0a4
update case-file.md
Shiyu-Sandy-Du Feb 28, 2024
73ddfcb
update case-file.md
Shiyu-Sandy-Du Feb 28, 2024
6db9f9a
Considering the restart might use a different mesh, the first time st…
Shiyu-Sandy-Du Feb 29, 2024
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
Prev Previous commit
Next Next commit
Update fluid_scheme.f90
  • Loading branch information
Shiyu-Sandy-Du authored Feb 20, 2024
commit 61258469b6d99cf2cfdd95b0cef2b9e2686402d4
6 changes: 3 additions & 3 deletions src/fluid/fluid_scheme.f90
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ module fluid_scheme
type(field_t), pointer :: v => null() !< y-component of Velocity
type(field_t), pointer :: w => null() !< z-component of Velocity
type(field_t), pointer :: p => null() !< Pressure
type(field_series_t) :: ulag, vlag, wlag, plag !< fluid field (lag)
type(field_series_t) :: ulag, vlag, wlag !< fluid field (lag)
type(space_t) :: Xh !< Function space \f$ X_h \f$
type(dofmap_t) :: dm_Xh !< Dofmap associated with \f$ X_h \f$
type(gs_t) :: gs_Xh !< Gather-scatter associated with \f$ X_h \f$
Expand Down Expand Up @@ -532,7 +532,7 @@ subroutine fluid_scheme_init_all(this, msh, lx, params, kspv_init, kspp_init,&
call this%ulag%init(this%u, 2)
call this%vlag%init(this%v, 2)
call this%wlag%init(this%w, 2)
call this%plag%init(this%p, 2)


!
! Setup pressure boundary conditions
Expand Down Expand Up @@ -668,7 +668,7 @@ subroutine fluid_scheme_free(this)
call this%ulag%free()
call this%vlag%free()
call this%wlag%free()
call this%plag%free()


if (associated(this%f_x)) then
call this%f_x%free()
Expand Down