From 126442442b4d15375d908fd45310a3ef7fcf9290 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Micka=C3=ABl=20V=C3=A9ril?= Date: Fri, 20 Sep 2019 10:41:36 +0200 Subject: [PATCH] Fix 0-0 --- static/scripts/data.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/static/scripts/data.js b/static/scripts/data.js index e48fa031..4b29667a 100644 --- a/static/scripts/data.js +++ b/static/scripts/data.js @@ -75,7 +75,7 @@ class excitation{ return (this.Eabs+this.Efluo)/2 } get Ezz() { - return this.Eadia+this.EZPE + return this.Eadia-this.EZPE } toString() { return this.start+ ', ' + this.end +', '+ this.Eabs.toPrecision(3);