Skip to content

Commit

Permalink
Merge branch 'develop' of https://github.com/LLNL/UEDGE into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
holm10 committed Jul 14, 2023
2 parents 874c0c3 + 5622339 commit 31924da
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
3 changes: 3 additions & 0 deletions bbb/bbb_basis.v
Original file line number Diff line number Diff line change
Expand Up @@ -3840,6 +3840,9 @@ yielz(imx+1,lnst+1) _real
***** Ident_vars:
uedge_ver character*80 /'$Name: 8.0.4.0$'/
uedge_date character*80 /'Version date in README_Uedge_vers in dir uedge'/
session_id integer /0/ # Identifier for use with uetools
max_session_id integer /0/ # Identifier for max allocated runs, use with uetools
exmain_evals integer /0/ # Number of successfull exmain evaluations

***** Last_group_ex_sav_var:
# Last group in bbb where new variables from read save files get stored
Expand Down
2 changes: 1 addition & 1 deletion bbb/oderhs.m
Original file line number Diff line number Diff line change
Expand Up @@ -2612,7 +2612,7 @@ ccc if (isupgon .eq. 1 .and. zi(ifld) .eq. 0.0) call neudif
c Logic here is specialized; only ifld=2 (igsp=1) has viscosity calc.
c If more neutral species have full parallel mom eqn, need to redo loops
if(isupgon(1) .eq. 1 .and. zi(ifld) .eq. 0)then
do 936 iy = j1,j5
do 936 iy = j1,j6
iyp1 = min(iy+1,ny+1)
do 937 ix = i1,i6
c
Expand Down
8 changes: 5 additions & 3 deletions pyscripts/checkver.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,11 +24,13 @@

print()
if thisver > thatver:
print('Uedge version '+thisver+' is newer than available with pip ('+thatver+')')
#print('Uedge version '+thisver+' is newer than available with pip ('+thatver+')')
pass
elif thisver == thatver:
print('Uedge version '+thisver+' is up-to-date')
#print('Uedge version '+thisver+' is up-to-date')
pass
elif thisver < thatver:
print('Uedge version '+thisver+', an update is available to '+thatver)
else:
print('Some error checking version')
print('Some error checking pypi version')
print()

0 comments on commit 31924da

Please sign in to comment.