Skip to content

Commit d2f567a

Browse files
author
logan-nc
committed
Merge branch 'hotfix-1.5.1'
2 parents ec8f662 + fcf44e0 commit d2f567a

File tree

4 files changed

+16
-4
lines changed

4 files changed

+16
-4
lines changed

docs/conf.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -62,7 +62,7 @@
6262
# The short X.Y version.
6363
version = '1.5'
6464
# The full version, including alpha/beta/rc tags.
65-
release = '1.5.0'
65+
release = '1.5.1'
6666

6767
# The language for content autogenerated by Sphinx. Refer to documentation
6868
# for a list of supported languages.

docs/releases.rst

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,15 @@ Note, backwards compatibility is defined as the ability to return to a previous
1010

1111
The `github release notes <https://github.com/PrincetonUniversity/GPEC/releases>`_ are reproduced below.
1212

13+
GPEC v1.5.1
14+
===========
15+
16+
Fixes
17+
------
18+
- GPEC - Fixes bug in jacfac diagnostic, now benchmarked with MEPHIT
19+
- GPEC - Fixes bug in terminal output of q during vsingfld
20+
21+
1322
GPEC v1.5.0
1423
===========
1524

gpec/gpdiag.f

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2425,9 +2425,12 @@ SUBROUTINE gpdiag_jacfac()
24252425
24262426
CHARACTER(2) :: si
24272427
2428-
boutmn(:) = 1
2429-
24302428
DO i=-2,2
2429+
boutmns(:, :) = 0
2430+
boutfuns(:, :) = 0
2431+
boutmn(:) = 1
2432+
boutfun(:) = 1
2433+
CALL iscdftf(mfac,mpert,boutfun,mthsurf,boutmn)
24312434
IF (i>=0) THEN
24322435
WRITE(UNIT=si,FMT='(I1)')i
24332436
si=ADJUSTL(si)

gpec/gpout.f

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2141,7 +2141,7 @@ SUBROUTINE gpout_vsingfld()
21412141
IF(ising == 1) WRITE(*,'(1x,a12,a12,a12,a12)') "psi", "q",
21422142
$ "singflx", "chirikov"
21432143
WRITE(*,'(1x,es12.3,f12.3,es12.3,f12.3)')
2144-
$ respsi, sq%f(4), ABS(vflxmn(ising)),
2144+
$ respsi, singtype(ising)%q, ABS(vflxmn(ising)),
21452145
$ vchirikov(ising)
21462146
ENDIF
21472147
ENDDO

0 commit comments

Comments
 (0)