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 src/simulation.f90
Co-authored-by: Niclas Jansson <njansson@kth.se>
  • Loading branch information
Shiyu-Sandy-Du and njansson authored Feb 26, 2024
commit 4a1fc46866796373757b06bf02bbb18ce8909875
2 changes: 1 addition & 1 deletion src/simulation.f90
Original file line number Diff line number Diff line change
Expand Up @@ -281,7 +281,7 @@ subroutine simulation_joblimit_chkp(C, t)

end subroutine simulation_joblimit_chkp

!> Set new dt based on cfl if requested
!> Set new dt based on cfl if requested
!! @param dt current time step
!! @param params json case file
!! @param cfl courant number of current iteration
Shiyu-Sandy-Du marked this conversation as resolved.
Show resolved Hide resolved
Expand Down
Loading