-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #9 from ORNL-Fusion/master_dev
Initial code and test setup for VMEC
- Loading branch information
Showing
136 changed files
with
37,766 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,28 @@ | ||
cmake_minimum_required (VERSION 3.14) | ||
|
||
project (parvmec C CXX Fortran) | ||
set (CMAKE_CXX_STANDARD 11) | ||
|
||
add_library (vmec) | ||
add_dependencies (vmec stell) | ||
|
||
target_link_libraries (vmec stell) | ||
target_include_directories (vmec PUBLIC $<TARGET_PROPERTY:stell,BINARY_DIR>) | ||
|
||
add_executable (xvmec) | ||
add_dependencies (xvmec vmec) | ||
target_link_libraries (xvmec vmec) | ||
|
||
add_subdirectory (Sources) | ||
|
||
################################################################################ | ||
# Testing # | ||
################################################################################ | ||
|
||
# Build test utilities. | ||
add_executable (xwout_diff) | ||
add_dependencies (xwout_diff stell) | ||
|
||
target_link_libraries (xwout_diff stell) | ||
|
||
add_subdirectory (Testing) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
# VMEC | ||
3D Equilibrium solver with nested flux surfaces. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# Add subdirectories for all the sources. | ||
add_subdirectory (General) | ||
add_subdirectory (Hessian) | ||
add_subdirectory (Initialization_Cleanup) | ||
add_subdirectory (Input_Output) | ||
add_subdirectory (NESTOR_vacuum) | ||
add_subdirectory (Splines) | ||
add_subdirectory (TimeStep) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
target_sources(vmec | ||
PRIVATE | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/add_fluxes.f90> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/alias.f> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/angle_constraints.f90> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/aspectratio.f> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/bcovar.f> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/blocktridiagonalsolver_bst.f90> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/blocktridiagonalsolver.f90> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/convert.f> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/csplinx.f> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/directaccess.f90> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/fbal.f> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/forces.f> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/funct3d.f> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/getfsq.f> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/jacobian.f> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/lamcal.f90> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/precondn.f> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/realspace.f> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/residue.f90> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/scalfor.f> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/spectrum.f> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/symforce.f> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/symrzl.f> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/tomnsp_mod.f> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/totzsp_mod.f> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/vforces.f> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/vmec_dim.f> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/vmec_main.f> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/vmec_params.f> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/vmec_persistent.f> | ||
$<BUILD_INTERFACE:${CMAKE_CURRENT_SOURCE_DIR}/xstuff.f> | ||
) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,175 @@ | ||
SUBROUTINE add_fluxes_par(overg, bsupu, bsupv, lcurrent) | ||
USE vmec_main | ||
USE realspace, ONLY: pwint, pguu, pguv, pchip, pphip | ||
USE vmec_input, ONLY: nzeta | ||
USE vmec_dim, ONLY: ntheta3 | ||
USE parallel_include_module | ||
IMPLICIT NONE | ||
!----------------------------------------------- | ||
! D u m m y A r g u m e n t s | ||
!----------------------------------------------- | ||
REAL(rprec), DIMENSION(nznt,ns), INTENT(in) :: overg | ||
REAL(rprec), DIMENSION(nznt,ns), INTENT(inout) :: bsupu, bsupv | ||
LOGICAL, INTENT(in) :: lcurrent | ||
!----------------------------------------------- | ||
! L o c a l P a r a m e t e r s | ||
!----------------------------------------------- | ||
REAL(rprec), PARAMETER :: p5=0.5_dp, c1p5=1.5_dp | ||
REAL(rprec), PARAMETER :: iotaped = 0.10 | ||
!----------------------------------------------- | ||
! L o c a l V a r i a b l e s | ||
!----------------------------------------------- | ||
INTEGER :: js, l | ||
REAL(rprec) :: top, bot | ||
|
||
INTEGER :: i, j, k, nsmin, nsmax, lnsnum, istat | ||
!----------------------------------------------- | ||
! | ||
! ADD MAGNETIC FLUX (CHIP, PHIP) TERMS TO BSUPU=-OVERG*LAM_V, BSUPV=OVERG*LAM_U | ||
! COMPUTE FLUX FROM ITOR = <B_u>, ITOR(s) = integrated toroidal current (icurv) | ||
! IF ncurr == 1, AND ictrl_prec2d != 0, COMPUTE FORCE IN TOMNSP TO UPDATE chips | ||
! | ||
|
||
IF (.NOT.lcurrent .OR. ncurr.EQ.0) GOTO 100 | ||
|
||
nsmin=MAX(2,t1lglob); nsmax=t1rglob | ||
DO js = nsmin, nsmax | ||
top = icurv(js) | ||
bot = 0 | ||
DO j=1,nznt | ||
top = top - pwint(j,js)*(pguu(j,js)*bsupu(j,js) & | ||
+ pguv(j,js)*bsupv(j,js)) | ||
bot = bot + pwint(j,js)*overg(j,js)*pguu(j,js) | ||
END DO | ||
IF (bot.ne.zero) chips(js) = top/bot | ||
IF (phips(js).ne.zero) iotas(js) = chips(js)/phips(js) | ||
END DO | ||
|
||
100 CONTINUE | ||
|
||
nsmin=MAX(2,t1lglob); nsmax=t1rglob | ||
! CHANGE THIS FOR lRFP = T (solve for phips?) | ||
IF (ncurr .EQ. 0) THEN | ||
chips(nsmin:nsmax) = iotas(nsmin:nsmax)*phips(nsmin:nsmax) | ||
ELSE IF (.NOT.lcurrent) THEN | ||
WHERE (phips(nsmin:nsmax) .NE. zero) & | ||
iotas(nsmin:nsmax) = chips(nsmin:nsmax)/phips(nsmin:nsmax) | ||
END IF | ||
|
||
DO js = nsmin, nsmax | ||
pchip(:,js) = chips(js) | ||
END DO | ||
|
||
nsmin=MAX(2,t1lglob); nsmax=MIN(ns-1,trglob) | ||
IF (t1lglob .eq. 1 .and. trglob .gt. 2) THEN | ||
chipf(1) = c1p5*chips(2) - p5*chips(3) | ||
ELSE IF (t1lglob .eq. 1) THEN | ||
chipf(1) = chips(2) | ||
END IF | ||
chipf(nsmin:nsmax) = (chips(nsmin:nsmax) + chips(nsmin+1:nsmax+1))/2 | ||
IF (nsmax.EQ.ns) chipf(ns) = c1p5*chips(ns)- p5*chips(ns-1) | ||
|
||
! Do not compute iota too near origin | ||
IF(trglob_arr(1).LE.2) THEN | ||
#if defined(MPI_OPT) | ||
CALL MPI_Bcast(iotas(3),1,MPI_REAL8,1,NS_COMM,MPI_ERR) | ||
#endif | ||
END IF | ||
IF (lrfp) THEN | ||
IF (nsmin.EQ.1) iotaf(1) = one/(c1p5/iotas(2) - p5/iotas(3)) | ||
IF (nsmax.EQ.ns) iotaf(ns)=one/(c1p5/iotas(ns)-p5/iotas(ns-1)) | ||
DO js = MAX(2,t1lglob), MIN(ns-1,t1rglob) | ||
iotaf(js) = 2.0_dp/(one/iotas(js) + one/iotas(js+1)) | ||
END DO | ||
ELSE | ||
IF (nsmin.EQ.1) iotaf(1) = c1p5*iotas(2) - p5*iotas(3) | ||
IF (nsmax.EQ.ns) iotaf(ns)=c1p5*iotas(ns) - p5*iotas(ns-1) | ||
DO js = MAX(2,t1lglob), MIN(ns-1,trglob) | ||
iotaf(js) = p5*(iotas(js) + iotas(js+1)) | ||
END DO | ||
END IF | ||
|
||
nsmin=MAX(1,t1lglob); nsmax=MIN(ns,t1rglob) | ||
bsupu(:,nsmin:nsmax) = bsupu(:,nsmin:nsmax)+pchip(:,nsmin:nsmax)*overg(:,nsmin:nsmax) | ||
|
||
END SUBROUTINE add_fluxes_par | ||
|
||
SUBROUTINE add_fluxes(overg, bsupu, bsupv, lcurrent) | ||
USE vmec_main | ||
USE realspace, ONLY: wint, guu, guv, chip, phip | ||
|
||
IMPLICIT NONE | ||
!----------------------------------------------- | ||
! D u m m y A r g u m e n t s | ||
!----------------------------------------------- | ||
REAL(rprec), DIMENSION(nrzt), INTENT(in) :: overg | ||
REAL(rprec), DIMENSION(nrzt), INTENT(inout) :: bsupu, bsupv | ||
LOGICAL, INTENT(in) :: lcurrent | ||
!----------------------------------------------- | ||
! L o c a l P a r a m e t e r s | ||
!----------------------------------------------- | ||
REAL(rprec), PARAMETER :: p5=0.5_dp, c1p5=1.5_dp | ||
REAL(rprec), PARAMETER :: iotaped = 0.10_dp | ||
!----------------------------------------------- | ||
! L o c a l V a r i a b l e s | ||
!----------------------------------------------- | ||
INTEGER :: js, l | ||
REAL(rprec) :: top, bot | ||
|
||
!----------------------------------------------- | ||
! | ||
! ADD MAGNETIC FLUX (CHIP, PHIP) TERMS TO BSUPU=-OVERG*LAM_V, BSUPV=OVERG*LAM_U | ||
! COMPUTE FLUX FROM ITOR = <B_u>, ITOR(s) = integrated toroidal current (icurv) | ||
! IF ncurr == 1 | ||
! | ||
IF (.not.lcurrent .or. ncurr.eq.0) GOTO 100 | ||
|
||
! nsmin=MAX(2,tlglob); nsmax=trglob | ||
|
||
DO js = 2, ns | ||
top = icurv(js) | ||
bot = 0 | ||
DO l = js, nrzt, ns | ||
top = top - wint(l)*(guu(l)*bsupu(l) + guv(l)*bsupv(l)) | ||
bot = bot + wint(l)*overg(l)*guu(l) | ||
END DO | ||
IF (bot .ne. zero) chips(js) = top/bot | ||
IF (phips(js) .ne. zero) iotas(js) = chips(js)/phips(js) | ||
END DO | ||
|
||
100 CONTINUE | ||
|
||
! CHANGE THIS FOR lRFP = T (solve for phips?) | ||
IF (ncurr .eq. 0) THEN | ||
chips = iotas*phips | ||
ELSE IF (.not.lcurrent) THEN | ||
WHERE (phips .ne. zero) iotas = chips/phips | ||
END IF | ||
|
||
DO js = 2, ns | ||
chip(js:nrzt:ns) = chips(js) | ||
END DO | ||
|
||
chipf(1) = c1p5*chips(2) - p5*chips(3) !SPH ADDED THIS 4-8-16 | ||
chipf(2:ns1) = (chips(2:ns1) + chips(3:ns1+1))/2 | ||
chipf(ns) = c1p5*chips(ns)- p5*chips(ns1) !SPH FIXED THIS 4-8-16 | ||
|
||
! Do not compute iota too near origin | ||
IF (lrfp) THEN | ||
iotaf(1) = one/(c1p5/iotas(2) - p5/iotas(3)) | ||
iotaf(ns) = one/(c1p5/iotas(ns) - p5/iotas(ns1)) | ||
DO js = 2, ns-1 | ||
iotaf(js) = 2.0_dp/(one/iotas(js) + one/iotas(js+1)) | ||
END DO | ||
|
||
ELSE | ||
iotaf(1) = c1p5*iotas(2) - p5*iotas(3) !zero gradient near axis | ||
iotaf(ns) = c1p5*iotas(ns) - p5*iotas(ns-1) | ||
DO js = 2, ns-1 | ||
iotaf(js) = p5*(iotas(js) + iotas(js+1)) | ||
END DO | ||
END IF | ||
|
||
bsupu(:nrzt) = bsupu(:nrzt)+chip(:nrzt)*overg(:nrzt) | ||
|
||
END SUBROUTINE add_fluxes |
Oops, something went wrong.