|
@@ -1,6 +1,25 @@
|
|
|
+/*
|
|
|
+ Navicat Premium Data Transfer
|
|
|
+
|
|
|
+ Source Server : local
|
|
|
+ Source Server Type : MySQL
|
|
|
+ Source Server Version : 80029
|
|
|
+ Source Host : localhost:3306
|
|
|
+ Source Schema : ipfcst-v3
|
|
|
+
|
|
|
+ Target Server Type : MySQL
|
|
|
+ Target Server Version : 80029
|
|
|
+ File Encoding : 65001
|
|
|
+
|
|
|
+ Date: 17/08/2022 16:04:06
|
|
|
+*/
|
|
|
+
|
|
|
SET NAMES utf8mb4;
|
|
|
SET FOREIGN_KEY_CHECKS = 0;
|
|
|
|
|
|
+-- ----------------------------
|
|
|
+-- Table structure for t_calculation_formula
|
|
|
+-- ----------------------------
|
|
|
DROP TABLE IF EXISTS `t_calculation_formula`;
|
|
|
CREATE TABLE `t_calculation_formula` (
|
|
|
`ID` int(0) NOT NULL AUTO_INCREMENT,
|
|
@@ -16,6 +35,9 @@ CREATE TABLE `t_calculation_formula` (
|
|
|
PRIMARY KEY (`ID`) USING BTREE
|
|
|
) ENGINE = InnoDB AUTO_INCREMENT = 18 CHARACTER SET = utf8 COLLATE = utf8_general_ci ROW_FORMAT = Dynamic;
|
|
|
|
|
|
+-- ----------------------------
|
|
|
+-- Records of t_calculation_formula
|
|
|
+-- ----------------------------
|
|
|
INSERT INTO `t_calculation_formula` VALUES (1, 'POINT_S', 1, '(1-math.abs((sj-yc)/yc))*100', 'E21Old;E61;E62;E63;E64;', NULL, NULL, NULL, NULL, NULL);
|
|
|
INSERT INTO `t_calculation_formula` VALUES (2, 'POINT_U', 1, 'sum:math.abs(sj-yc)', 'E61;E62;E63;E64;', NULL, NULL, NULL, NULL, NULL);
|
|
|
INSERT INTO `t_calculation_formula` VALUES (3, 'POINT_U', 2, 'math.abs((sj/(sj+yc))-0.5)*(math.abs(sj-yc)/result1)', 'E61;E62;E63;E64;', NULL, NULL, NULL, NULL, NULL);
|
|
@@ -34,4 +56,4 @@ INSERT INTO `t_calculation_formula` VALUES (15, 'RMSE_R', 2, '(1-math.sqrt((resu
|
|
|
INSERT INTO `t_calculation_formula` VALUES (16, 'RMSE_S', 1, 'sum:math.pow((sj-yc),2)', 'E22;E23;E36;E37;E42;E43;E44;E45;E51;E62;', NULL, NULL, NULL, NULL, NULL);
|
|
|
INSERT INTO `t_calculation_formula` VALUES (17, 'RMSE_S', 2, '(1-(result1/rl*math.sqrt(count)))*100', 'E22;E23;E36;E37;E42;E43;E44;E45;E51;E62;', NULL, NULL, NULL, NULL, NULL);
|
|
|
|
|
|
-SET FOREIGN_KEY_CHECKS = 1;
|
|
|
+SET FOREIGN_KEY_CHECKS = 1;
|