Skip to content

Commit

Permalink
Rename modules to make 100% sure they are not mixed up with the ones …
Browse files Browse the repository at this point in the history
…from the burgers example.
  • Loading branch information
vehre committed Oct 8, 2024
1 parent 5fc8ca9 commit 2351334
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,8 @@
! ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
! (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
!
module global_field_module
use local_field_module, only : local_field
module chs_global_field_module
use chs_local_field_module, only : local_field
implicit none
private
public :: global_field
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
! ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
! (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
!
module local_field_module
module chs_local_field_module
implicit none
private
public :: local_field
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@

program main
use IEEE_arithmetic, only : IEEE_is_NaN
use global_field_module, only : global_field
use chs_global_field_module, only : global_field
implicit none
type(global_field) :: T,laplacian_T,T_half
real, parameter :: alpha=1.,dt=0.0001,final_time=1.,tolerance=1.E-3
Expand Down

0 comments on commit 2351334

Please sign in to comment.