Skip to content
Snippets Groups Projects
Commit 674e340b authored by Antoine Cyril David Hoffmann's avatar Antoine Cyril David Hoffmann :seedling:
Browse files

remove unused parts

parent 03491df7
No related branches found
No related tags found
No related merge requests found
...@@ -326,13 +326,10 @@ CONTAINS ...@@ -326,13 +326,10 @@ CONTAINS
IMPLICIT NONE IMPLICIT NONE
REAL :: shift, kx_shift REAL :: shift, kx_shift
! For periodic CHI BC or 0 dirichlet ! For periodic CHI BC or 0 dirichlet
LOGICAL :: PERIODIC_CHI_BC = .TRUE. LOGICAL :: PERIODIC_CHI_BC = .FALSE.
ALLOCATE(ikx_zBC_R(ikys:ikye,ikxs:ikxe)) ALLOCATE(ikx_zBC_R(ikys:ikye,ikxs:ikxe))
ALLOCATE(ikx_zBC_L(ikys:ikye,ikxs:ikxe)) ALLOCATE(ikx_zBC_L(ikys:ikye,ikxs:ikxe))
! No periodic connection for extension of the domain
IF(Nexc .GT. 1) PERIODIC_CHI_BC = .TRUE.
!! No shear case (simple id mapping) !! No shear case (simple id mapping)
!3 | 1 2 3 4 5 6 | ky = 3 dky !3 | 1 2 3 4 5 6 | ky = 3 dky
!2 ky | 1 2 3 4 5 6 | ky = 2 dky !2 ky | 1 2 3 4 5 6 | ky = 2 dky
......
...@@ -8,7 +8,6 @@ SUBROUTINE stepon ...@@ -8,7 +8,6 @@ SUBROUTINE stepon
USE model, ONLY : LINEARITY, KIN_E USE model, ONLY : LINEARITY, KIN_E
use prec_const use prec_const
USE time_integration USE time_integration
USE numerics, ONLY: play_with_modes
USE utility, ONLY: checkfield USE utility, ONLY: checkfield
IMPLICIT NONE IMPLICIT NONE
...@@ -38,10 +37,6 @@ SUBROUTINE stepon ...@@ -38,10 +37,6 @@ SUBROUTINE stepon
CALL solve_EM_fields CALL solve_EM_fields
CALL update_ghosts_EM CALL update_ghosts_EM
! Numerical experiments
! Store or cancel/maintain zonal modes artificially
! CALL play_with_modes
!- Check before next step !- Check before next step
CALL checkfield_all() CALL checkfield_all()
IF( nlend ) EXIT ! exit do loop IF( nlend ) EXIT ! exit do loop
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment