This file contains hidden or 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
### A Pluto.jl notebook ### | |
# v0.17.1 | |
using Markdown | |
using InteractiveUtils | |
# This Pluto notebook uses @bind for interactivity. When running this notebook outside of Pluto, the following 'mock version' of @bind gives bound variables a default value (instead of an error). | |
macro bind(def, element) | |
quote | |
local iv = try Base.loaded_modules[Base.PkgId(Base.UUID("6e696c72-6542-2067-7265-42206c756150"), "AbstractPlutoDingetjes")].Bonds.initial_value catch; b -> missing; end |
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
This file contains hidden or 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
function! Tic(...) | |
if a:0 > 0 && !empty(a:1) | |
if exists(':PP') == 2 | |
PP! a:1 | |
else | |
echomsg string(a:1) | |
endif | |
endif | |
let s:starttime = reltime() | |
endfunction |
This file contains hidden or 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
function! s:KemonofriendsFill(rowoffset, coloffset) abort | |
let filling = [] | |
for i in range(15 + a:rowoffset*2) | |
let line = repeat(' ', 187 + a:coloffset*2) | |
let filling += [line] | |
endfor | |
call append(0, filling) | |
endfunction | |
function! KemonofriendsLogo(...) abort |
This file contains hidden or 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
#!/bin/bash | |
# Version string of gamess to use | |
if [ -z "$GAMESS_PATH" ]; then | |
GAMESS_PATH="/opt/gamess/rungms" | |
fi | |
# Version string of gamess to use | |
if [ -z "$GAMESS_VER" ]; then | |
GAMESS_VER="00" | |
fi |
This file contains hidden or 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
$CONTRL SCFTYP=RHF RUNTYP=ENERGY DFTTYP=B3LYPV3 MAXIT=50 MULT=1 $END | |
$SYSTEM TIMLIM=525600 MWORDS=100 $END | |
$BASIS GBASIS=N311 NGAUSS=6 NDFUNC=1 $END | |
$SCF DIRSCF=.TRUE. $END | |
$DATA | |
Coumarin | |
C1 | |
C 6.0 2.36439 0.71434 0.00000 | |
C 6.0 2.30658 -0.68323 0.00000 | |
C 6.0 1.08599 -1.33517 0.00000 |
This file contains hidden or 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
$CONTRL SCFTYP=RHF RUNTYP=ENERGY MPLEVL=2 MAXIT=30 MULT=1 | |
NZVAR=66 $END | |
$SYSTEM TIMLIM=525600 MWORDS=100 MEMDDI=100 $END | |
$BASIS GBASIS=N311 NGAUSS=6 NDFUNC=1 $END | |
$SCF DIRSCF=.TRUE. $END | |
$ZMAT DLC=.TRUE. AUTO=.TRUE. $END | |
$DATA | |
Caffeine | |
C1 | |
N 7.0 1.31200 -1.04790 0.00250 |
This file contains hidden or 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
$CONTRL SCFTYP=RHF RUNTYP=ENERGY CCTYP=CCSD(T) MAXIT=50 MULT=1 NZVAR=33 $END | |
$SYSTEM TIMLIM=525600 MWORDS=100 MEMDDI=100 $END | |
$BASIS GBASIS=N311 NGAUSS=6 $END | |
$SCF DIRSCF=.TRUE. $END | |
$ZMAT DLC=.TRUE. AUTO=.TRUE. $END | |
$DATA | |
Alanine | |
C1 | |
H 1.0 0.38827 1.48218 -0.22171 | |
C 6.0 0.32693 0.39806 0.04886 |
This file contains hidden or 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
diff -uprN ./gamess_orig/config ./gamess/config | |
--- ./gamess_orig/config 2018-02-15 11:10:06.000000000 +0800 | |
+++ ./gamess/config 2018-09-11 22:56:48.292120310 +0800 | |
@@ -562,7 +562,7 @@ else | |
echo "Type 'ls /opt/pgi/osx86-64/*/lib/* to look for libblas.a from PGI" | |
endif | |
echo " " | |
-echo -n "Enter your choice of 'mkl' or 'atlas' or 'acml' or 'pgiblas' or 'none': " | |
+echo -n "Enter your choice of 'mkl' or 'atlas' or 'acml' or 'pgiblas' or 'openblas' or 'none': " | |
set GMS_MATHLIB=$< |
This file contains hidden or 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
diff -uprN ./gamess_orig/config ./gamess/config | |
--- ./gamess_orig/config 2018-02-15 11:10:06.000000000 +0800 | |
+++ ./gamess/config 2018-09-11 22:56:48.292120310 +0800 | |
@@ -562,7 +562,7 @@ else | |
echo "Type 'ls /opt/pgi/osx86-64/*/lib/* to look for libblas.a from PGI" | |
endif | |
echo " " | |
-echo -n "Enter your choice of 'mkl' or 'atlas' or 'acml' or 'pgiblas' or 'none': " | |
+echo -n "Enter your choice of 'mkl' or 'atlas' or 'acml' or 'pgiblas' or 'openblas' or 'none': " | |
set GMS_MATHLIB=$< |
NewerOlder