mirror of
https://github.com/LCPQ/QUESTDB_website.git
synced 2024-12-25 13:53:48 +01:00
Fix equations error
This commit is contained in:
parent
74e2936f61
commit
d5465af13a
@ -71,7 +71,7 @@ draft: false
|
||||
var row=document.createElement("tr")
|
||||
var rowd=[]
|
||||
rowd.push(String.raw`${LatexInline[0]} ${el.start.toLaTeX()} \rightarrow ${el.end.toLaTeX()}${LatexInline[1]}`)
|
||||
var e=[el.Eabs,el.Efluo,el.EZPE,el.Ezz]
|
||||
var e=[el.Eabs,el.Efluo,el.EZPE,el.Eadia,el.Ezz]
|
||||
e.forEach((val)=>rowd.push(val.toFixed(2)))
|
||||
rowd.forEach((d)=>{
|
||||
td=document.createElement("td")
|
||||
@ -118,6 +118,7 @@ draft: false
|
||||
<th>\(E_{abs}\)</th>
|
||||
<th>\(E_{fluo}\)</th>
|
||||
<th>\(\Delta E_{ZPE}\)</th>
|
||||
<th>\(E_{adia}\)</th>
|
||||
<th>\(E_{00}\)</th>
|
||||
</tr>
|
||||
</table>
|
||||
|
@ -70,9 +70,12 @@ class excitation{
|
||||
this.Eabs=Eabs;
|
||||
this.Efluo=Efluo;
|
||||
this.EZPE=EZPE;
|
||||
}
|
||||
get Eadia() {
|
||||
return (this.Eabs+this.Efluo)/2
|
||||
}
|
||||
get Ezz() {
|
||||
return this.Eabs-this.Efluo+this.EZPE
|
||||
return this.Eadia+this.EZPE
|
||||
}
|
||||
toString() {
|
||||
return this.start+ ', ' + this.end +', '+ this.Eabs.toPrecision(3);
|
||||
|
Loading…
Reference in New Issue
Block a user