Skip to content

Commit 2351334

Browse files
committed
Rename modules to make 100% sure they are not mixed up with the ones from the burgers example.
1 parent 5fc8ca9 commit 2351334

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/tests/integration/pde_solvers/coarrayHeatSimplified/global_field.f90

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,8 +24,8 @@
2424
! ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2525
! (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
2626
!
27-
module global_field_module
28-
use local_field_module, only : local_field
27+
module chs_global_field_module
28+
use chs_local_field_module, only : local_field
2929
implicit none
3030
private
3131
public :: global_field

src/tests/integration/pde_solvers/coarrayHeatSimplified/local_field.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@
2424
! ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
2525
! (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
2626
!
27-
module local_field_module
27+
module chs_local_field_module
2828
implicit none
2929
private
3030
public :: local_field

src/tests/integration/pde_solvers/coarrayHeatSimplified/main.f90

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@
2727

2828
program main
2929
use IEEE_arithmetic, only : IEEE_is_NaN
30-
use global_field_module, only : global_field
30+
use chs_global_field_module, only : global_field
3131
implicit none
3232
type(global_field) :: T,laplacian_T,T_half
3333
real, parameter :: alpha=1.,dt=0.0001,final_time=1.,tolerance=1.E-3

0 commit comments

Comments
 (0)