10
0
mirror of https://github.com/LCPQ/QUESTDB_website.git synced 2024-07-23 03:07:44 +02:00
QUESTDB_website/tools/lib/formats/default/fromXLSToLaTeXHandler.py

124 lines
4.5 KiB
Python
Raw Normal View History

2020-07-23 15:27:07 +02:00
from .. import *
from ...data import dataFileBase,DataType,method,excitationValue,datafileSelector,getSubtablesRange,state
from ...utils import getValFromCell
from TexSoup import TexSoup,TexNode
2020-08-02 17:02:29 +02:00
from ...LaTeX import newCommand,extractMath
2020-07-23 15:27:07 +02:00
import numpy as np
import json
import itertools
def GetTypeFromAcronym(acronym):
2020-11-04 14:18:12 +01:00
acroDict={
"npi":r"n \rightarrow \pi^\star",
"ppi":r"\pi \rightarrow \pi^\star",
"n3s":r"n \rightarrow 3s",
2020-11-04 15:31:54 +01:00
"n3p":r"n \rightarrow 3p",
2020-11-04 14:18:12 +01:00
"dou":"double",
2020-11-04 15:31:54 +01:00
"p3s":r"\pi \rightarrow 3s",
2020-11-04 14:18:12 +01:00
"p3p":r"\pi \rightarrow 3p",
"spi":r"\sigma \rightarrow \pi^\star",
2021-03-27 15:48:50 +01:00
"CT":r"CT",
"non-d":None,
"n.d.":None
2020-11-04 14:18:12 +01:00
}
try:
return acroDict[acronym]
except KeyError as ex:
2020-11-09 10:12:28 +01:00
raise ValueError(f"Unrecognized acronym: {acronym}") from ex
def GetFullState(TexState,defaultDatatype=DataType.ABS,VR=None,typeAcronym=None,Soup=True):
datatype=defaultDatatype
lst=list(TexState)
if len(lst)>1 and lst[1].value=="F":
datatype=DataType.FLUO
statemath=str(list(lst[0].contents)[0])
2020-08-02 17:02:29 +02:00
resultstr=statemath
2020-07-23 15:27:07 +02:00
fulltype=[]
if datatype==DataType.FLUO:
resultstr+=r"[\mathrm{F}]"
if VR!=None:
fulltype.append(r"\mathrm{"+VR+"}")
if typeAcronym!=None:
_type=GetTypeFromAcronym(typeAcronym)
if _type!=None:
fulltype.append(_type)
if len(fulltype)>0:
resultstr+=" ("+";".join(fulltype)+")"
resultstr="$"+resultstr+"$"
if Soup:
return TexSoup(resultstr)
else:
return resultstr
@formatName("fromXLSToLaTeX")
class fromXLSToLaTeXHandler(formatHandlerBase):
def readFromTable(self,table):
datalist=list()
subtablesRange=getSubtablesRange(table,firstindex=1,column=1)
for myrange in subtablesRange:
valDic=dict()
mymolecule=str(table[myrange[0],1])
initialState=self.TexOps.initialStates[mymolecule]
for col in itertools.chain(range(8,11), range(14,np.size(table,1))):
col=table[:,col]
basis="aug-cc-pVTZ"
mymethcell=list(col[0])
if len(mymethcell)==0:
continue
if isinstance(mymethcell[0],TexNode) and mymethcell[0].name=="$":
kindSoup=TexSoup("".join(list(mymethcell[0].expr.all)))
2020-10-08 18:41:13 +02:00
newCommand.runAll(kindSoup,self.Commands)
2020-07-23 15:27:07 +02:00
kind=str(kindSoup)
methodnameSoup=TexSoup(mymethcell[1].value)
2020-10-08 18:41:13 +02:00
newCommand.runAll(methodnameSoup,self.Commands)
2020-07-23 15:27:07 +02:00
methodname=str(methodnameSoup)
else:
kind=""
methtex=col[0]
2020-10-08 18:41:13 +02:00
newCommand.runAll(methtex,self.Commands)
2020-07-23 15:27:07 +02:00
methodname=str(methtex)
mymethod=method(methodname,basis)
methkey=json.dumps(mymethod.__dict__)
2020-08-02 17:02:29 +02:00
mathstates=[GetFullState(table[i,4],VR=str(table[i,6]),typeAcronym=str(table[i,7]),Soup=True) for i in myrange]
2020-10-08 18:41:13 +02:00
finsts=dataFileBase.convertState(mathstates,initialState,default=self.TexOps.defaultType,commands=self.Commands)
2020-07-23 15:27:07 +02:00
for index,cell in enumerate(col[myrange]):
if str(cell)!="":
val=str(cell)
safedat=str(table[index+myrange[0],12])
if safedat=="Y":
unsafe=False
elif safedat=="N":
unsafe=True
else:
ValueError("Safe value error")
finst=finsts[index]
dt=finst[1]
if dt in valDic:
dtDic=valDic[dt]
else:
dtDic=dict()
valDic[dt]=dtDic
if not methkey in dtDic:
dtDic[methkey]=dict()
dataDic=dtDic[methkey]
exkey=(json.dumps(finst[0].__dict__,),finst[2])
if not exkey in dataDic:
dataDic[exkey]=dict()
if kind=='':
dataDic[exkey][kind]=(val,unsafe)
else:
dataDic[exkey][kind]=val
for dt,methdic in valDic.items():
for methstring,exdic in methdic.items():
data=datafileSelector(dt)()
data.molecule=mymolecule
methdic=json.loads(methstring)
data.method=method(methdic["name"],methdic["basis"])
for exstr,values in exdic.items():
stDict=json.loads(exstr[0])
ty=exstr[1]
2020-09-30 14:18:34 +02:00
st=state(stDict["number"],stDict["multiplicity"],stDict["symmetry"])
2020-07-23 15:27:07 +02:00
T1=values["\\%T_1"] if "\\%T_1" in values else None
oF= values["f"] if "f" in values else None
val,unsafe= values[""] if "" in values else [None,False]
2020-07-23 15:27:07 +02:00
data.excitations.append(excitationValue(initialState,st,val,type=ty,T1=T1,isUnsafe=unsafe,oscilatorForces=oF))
datalist.append(data)
return datalist