Commit a4eb209d authored by aohui.li's avatar aohui.li

优化部署工具

parent b90a3ae9
#!/bin/bash
FIXED_FTP_SERVER="wtlink.witium.com"
FIXED_FTP_PATH="/607/wtdiagnose/1.16_Fit_2.62/wtdiagnose.zip"
FIXED_FTP_EXPECTED_MD5="c33ffc52c31eec6d2a37619de563a26b"
# git clone 函数
function git_clone_with_auth() {
# 函数参数: $1 - Git仓库URL, $2 - 用户名, $3 - 密码, $4 - 克隆后的目录名
......@@ -172,7 +168,7 @@ setup_frpc() {
sudo cp "${extract_path}/frpc.toml" /etc/frp/
sudo cp "${extract_path}/config.json" /etc/frp/
sudo cp "${extract_path}/mqtt_frpc.service" "/usr/lib/systemd/system/"
# sudo systemctl enable mqtt_frpc
sudo systemctl enable mqtt_frpc
rm -rf "$extract_path"
echo "设置完成."
}
......@@ -191,45 +187,29 @@ setup_ssh() {
echo "设置完成."
}
# Example usage of the function
if [ "${BASH_SOURCE[0]}" == "${0}" ]; then
# 显示改脚本功能
echo "ECGPro-WTG6XXE 应用程序安装"
# # 输入相关信息
# read -p "输入FTP服务地址: " server
# read -p "输入在文件上的服务路径: " path
# echo
# read -p "输入MD5校验码: " expected_md5
server=${FIXED_FTP_SERVER}
path=${FIXED_FTP_PATH}
expected_md5=${FIXED_FTP_EXPECTED_MD5}
app_path="wtdiagnose"
git_path="wtdiagnose_debug"
# Call the function with provided arguments
if download_and_extract_zip "$server" "21" "$path" "witium" "Huidu37774020" "$expected_md5" "$app_path"; then
echo "app 可执行文件下载成功"
git_clone_with_auth "http://gitlab.witium.com.cn/jie_embedded/wtdiagnose.git" "aohui.li@witium.com" "Ktliaohui0808" "$git_path"
# 检查函数执行结果
if [ $? -eq 0 ]; then
echo "克隆成功."
echo "app应用程序初始化正在操作....."
cp -r "${git_path}/file" "${app_path}"
cp -r "${git_path}/db" "${app_path}"
cp "${git_path}/ftp_update" "${app_path}"
chmod 777 "${app_path}/ftp_update"
sudo cp "${git_path}/service/ftp_update.service" "/usr/lib/systemd/system/"
sudo cp "${git_path}/service/frpc.service" "/usr/lib/systemd/system/"
sudo cp "${git_path}/service/wtdiagnose.service" "/usr/lib/systemd/system/"
# sudo systemctl enable wtdiagnose
echo "app应用程序初始化完成....."
setup_quectel "${git_path}/env"
setup_frpc "${git_path}/env"
setup_ssh "${git_path}/env"
else
echo "克隆失败."
fi
bin_path="/home/linaro/wtdiagnose/"
git_path="./source_code"
echo "app 可执行文件下载成功"
pwd
if [ -d ${git_path} ]; then
echo "app应用程序初始化正在操作....."
cp -r "${git_path}/file" "${bin_path}"
cp -r "${git_path}/db" "${bin_path}"
cp "${git_path}/ftp_update" "${bin_path}"
chmod 777 "${bin_path}/ftp_update"
sudo cp "${git_path}/service/ftp_update.service" "/usr/lib/systemd/system/"
sudo cp "${git_path}/service/frpc.service" "/usr/lib/systemd/system/"
sudo cp "${git_path}/service/wtdiagnose.service" "/usr/lib/systemd/system/"
echo "app应用程序初始化完成....."
setup_quectel "${git_path}/env"
setup_frpc "${git_path}/env"
setup_ssh "${git_path}/env"
echo "app应用程序初始化完成....."
exit 0
else
echo "存在错误操作."
echo "克隆失败."
exit 1
fi
fi
\ No newline at end of file
.PHONY: all
all: debian_app pip_app led_app isr_app wtcurrent_app
all: prepare debian_app pip_app led_app isr_app wt_app bin_app
@echo "all done."
.PHONY: debian_app
debian_app: resources1
.PHONY: prepare
prepare:
sudo systemctl stop logrotate.timer
cp ./resources1/sources.list /etc/apt/sources.list
sudo apt update
debian_app: resources1
sudo apt install \
python3-dev python3-pip lrzsz git gcc pkg-config \
libcairo2-dev tig libgirepository1.0-dev minicom \
cron logrotate -y
cron logrotate lftp dialog dos2unix jq -y
sudo apt autoremove -y
sudo apt autoclean -y
touch debian_app
echo "debian_app done"
.PHONY: pip_app
pip_app: resources1
sudo pip3 install --upgrade pip -i https://mirrors.aliyun.com/pypi/simple/
......@@ -24,26 +29,151 @@ pip_app: resources1
touch pip_app
echo "pip_app done"
.PHONY: wt_app
repo_name ?= source_code
username=aohui.li
password=Ktliaohui0808
remote_url=http://$(username):$(password)@gitlab.witium.com.cn/jie_embedded/wtdiagnose.git
.PHONY: wt_app
wt_app:
@echo "git clone 开始 ..... "
@echo
git clone $(remote_url) $(repo_name)
@if [ $clone_status -eq 0 ]; then \
echo "仓库克隆成功。" \
# 这里可以添加克隆成功后要执行的其他操作,比如进入仓库目录执行其他命令
cd "$repo_name" \
# 示例:查看克隆下来的仓库的分支信息
git branch \
@git clone $(remote_url) $(repo_name)
.PHONY: redownload
old_app=/home/linaro/wtdiagnose/wtdiagnose
redownload:
@echo "redownload"
@rm -rf ./wtdiagnose.zip
@rm -rf $(old_app)
@bash download.sh
@if [ -f "./wtdiagnose.zip" ]; then \
cp ./wtdiagnose.zip $(download_zip); \
fi
@if [ ! -d "$(app_path)" ]; then \
mkdir -p "$(app_path)"; \
fi
@if [ ! -d "$(download_zip)" ]; then \
mv $(download_zip) $(app_path) ; \
fi
@if [ -d "$(repo_name)" ]; then \
echo "文件夹 $(repo_name) 存在。"; \
cd $(app_path); \
unzip $(app_path)wtdiagnose.zip; \
chmod 777 $(bin_app) ; \
else \
echo "仓库克隆失败,退出状态码: $clone_status" \
# 这里可以添加克隆失败后要执行的其他操作,比如记录错误日志等
echo "文件夹 $(repo_name) 不存在。";\
exit 1; \
fi
.PHONY: bin_app
app_path=/home/linaro/wtdiagnose/
download_zip=/home/linaro/wtdiagnose.zip
bin_app=/home/linaro/wtdiagnose/wtdiagnose
bin_app:
@dos2unix *.sh
@if [ ! -f "./wtdiagnose.zip" ];then \
bash download.sh ; \
fi
@if [ -f "./wtdiagnose.zip" ];then \
cp ./wtdiagnose.zip $(download_zip); \
fi
@if [ ! -d "$(app_path)" ]; then \
mkdir -p "$(app_path)"; \
fi
@if [ ! -d "$(download_zip)" ]; then \
mv $(download_zip) $(app_path) ; \
fi
@if [ -d "$(repo_name)" ]; then \
echo "文件夹 $(repo_name) 存在。"; \
cd $(app_path); \
unzip $(app_path)wtdiagnose.zip; \
chmod 777 $(bin_app) ; \
else \
echo "文件夹 $(repo_name) 不存在。";\
exit 1; \
fi
@bash 2_setup.sh
@sudo chmod 755 -R $(app_path)
@sudo chown -R linaro:linaro $(app_path)
@sudo cp -r ./wtcurrent /home/linaro/.
@sudo cp /home/linaro/wtcurrent/file/wtcurrent.json /home/linaro/wtcurrent/file/config.json
@sudo cp -r file /home/linaro/wtdiagnose/.
@bash sn_modify.sh
@sudo systemctl enable mqtt_frpc
@sudo systemctl start mqtt_frpc
@echo "bin_app done"
@echo "测试程序"
sudo systemctl stop wtdiagnose
sudo systemctl restart wtdiagnose
release_app:
@echo "release_app"
@sudo systemctl stop mqtt_frpc
@sudo systemctl stop wtdiagnose
@bash broker_modify.sh
@sudo systemctl enable mqtt_frpc
@sudo systemctl restart mqtt_frpc
sudo systemctl enable wtdiagnose
sudo systemctl restart wtdiagnose
.PHONY: clean_bin_app
app_path=/home/linaro/wtdiagnose/
download_zip=/home/linaro/wtdiagnose.zip
bin_app=/home/linaro/wtdiagnose/wtdiagnose
frpc_dir=/etc/frp
clean_bin_app:
if [ -d "$(app_path)" ]; then \
sudo systemctl stop wtdiagnose ; \
sudo systemctl disable wtdiagnose ; \
rm -rf "$(app_path)"; \
fi
if [ -f "./wtdiagnose.zip" ];then \
rm ./wtdiagnose.zip ; \
fi
if [ -f "$(download_zip)" ];then \
sudo rm $(download_zip) ; \
fi
if [ -d "$(frpc_dir)" ];then \
sudo systemctl stop mqtt_frpc ; \
sudo systemctl disable mqtt_frpc ; \
sudo rm -rf $(frpc_dir) ; \
fi
@echo "clean done"
.PHONY: led_app
led_op ?= open
led_app: resources4
......@@ -52,7 +182,6 @@ led_app: resources4
@if pip show iic-gpio > /dev/null 2>&1; then \
echo "iic-gpio 已安装"; \
else \
echo "iic-gpio 未安装"; \
sudo pip install ./resources4/iic_gpio-1.0.0-cp37-cp37m-linux_aarch64.whl; \
fi
......@@ -88,10 +217,11 @@ rs485_app: RES
@sudo python3 RES/rs485_scanf.py
@echo "执行完毕,请检查!"
.PHONY: wtcurrent_app
wtcurrent_app: resources7
.PHONY: wtcurrent_test
wtcurrent_test: resources7
@sudo pip install resources7/wtina226-1.0.1-cp37-cp37m-linux_aarch64.whl
@sudo python3 /home/linaro/wtcurrent/main.py
##############################################
###
......
#!/bin/bash
formal_broker=116.62.127.242
formal_port=1883
wt_json=/home/linaro/wtdiagnose/file/usbconfig.json
frpc_json=/etc/frp/config.json
jq --arg broker "$formal_broker" --arg port $formal_port '[.[] | .mqtt.broker = $broker | .mqtt.port = $port]' ${wt_json} > temp.json && mv temp.json ${wt_json}
jq --arg broker "$formal_broker" --arg port $formal_port '.mqtt.broker = $broker | .mqtt.port = $port' ${frpc_json} > temp.json && mv temp.json ${frpc_json}
\ No newline at end of file
#!/bin/bash
# FTP 服务器信息
FTP_SERVER="wtlink.witium.com"
FTP_USER="witium"
FTP_PASSWORD="Huidu37774020"
CURRENT_DIR="/"
# 检查 lftp 和 dialog 是否安装
if ! command -v lftp &> /dev/null; then
echo "lftp 未安装,请先安装 lftp。"
exit 1
fi
if ! command -v dialog &> /dev/null; then
echo "dialog 未安装,请先安装 dialog。"
exit 1
fi
# 获取指定目录下的 FTP 列表
function get_ftp_list {
local dir="$1"
lftp -u "$FTP_USER","$FTP_PASSWORD" "$FTP_SERVER" <<EOF
cd "$dir"
ls
bye
EOF
}
# 显示菜单供用户选择
function show_menu {
local list="$1"
local -a items=()
local line
local name
local type
# 添加返回上一级目录选项
if [ "$CURRENT_DIR" != "/" ]; then
items+=(".." "返回上一级目录")
fi
while IFS= read -r line; do
type=$(echo "$line" | awk '{print substr($1, 1, 1)}')
name=$(echo "$line" | awk '{print $NF}')
if [ "$type" = "d" ]; then
items+=("$name" "文件夹")
elif [ "$type" = "-" ]; then
items+=("$name" "文件")
fi
done <<< "$list"
selected=$(dialog --stdout --menu "当前目录: $CURRENT_DIR" 20 60 10 "${items[@]}")
echo "$selected"
}
while true; do
# 获取当前目录下的文件列表
file_list=$(get_ftp_list "$CURRENT_DIR")
# 显示菜单并获取用户选择
selected=$(show_menu "$file_list")
if [ -z "$selected" ]; then
# 用户取消操作,退出脚本
break
elif [ "$selected" = ".." ]; then
# 返回上一级目录
CURRENT_DIR=$(dirname "$CURRENT_DIR")
if [ "$CURRENT_DIR" = "." ]; then
CURRENT_DIR="/"
fi
elif [[ $(echo "$file_list" | grep " $selected$" | awk '{print substr($1, 1, 1)}') = "d" ]]; then
# 进入文件夹
CURRENT_DIR="$CURRENT_DIR/$selected/"
if [ "$CURRENT_DIR" != "/" ]; then
CURRENT_DIR=$(realpath -m "$CURRENT_DIR")
fi
else
# 下载文件
echo "正在下载文件: $CURRENT_DIR/$selected"
lftp -u "$FTP_USER","$FTP_PASSWORD" "$FTP_SERVER" <<EOF
get "$CURRENT_DIR/$selected"
bye
EOF
if [ $? -eq 0 ]; then
echo "文件下载成功。"
else
echo "文件下载失败。"
fi
fi
done
\ No newline at end of file
[
{
"part": "rule",
"rule": {
"filter": [
{
"name": "kilnRoarySpeedSetting",
"value": 4.75,
"filterName": "less"
}
]
}
},
{
"part": "diagnosisCustomer",
"diagnosisCustomerCycle": 24,
"diagnosisCustomerDataLen": 1
},
{
"part": "bootProcessFilterRule",
"filter": [
{
"name": "xVRMS_RM635259270224818176",
"filterName": "bootProcessFilter",
"filterBootNumber": 0,
"powerOnThreshold": 1,
"shutdownThreshold": 0.15,
"validLengthOfBootData": 4
}
],
"ruleName": "bootProcessFilter"
},
{
"num": 1,
"part": "monitor",
"content": [
{
"lmt": {
"xVRMS": 2.22,
"yVRMS": 1.44,
"zVRMS": 0.2
},
"msg": "振动烈度有增大趋势",
"now": {},
"alias": "电机驱动端",
"z_score": {
"xVRMS": 1.5,
"yVRMS": 1.5,
"zVRMS": 1.5
},
"alarmFlag": true,
"scoreFlag": true
},
{
"lmt": {
"xHighFreqRMS": 2000,
"yHighFreqRMS": 2000,
"zHighFreqRMS": 2000
},
"msg": "振动高频均方根有增大趋势",
"now": {},
"alias": "电机驱动端",
"z_score": {
"xHighFreqRMS": 1.5,
"yHighFreqRMS": 1.5,
"zHighFreqRMS": 1.5
},
"alarmFlag": false,
"scoreFlag": false
},
{
"lmt": {
"xCrestFactor": 6.78,
"yCrestFactor": 5.6,
"zCrestFactor": 6.4
},
"msg": "峰值因素有增大趋势",
"now": {},
"alias": "电机驱动端",
"z_score": {
"xCrestFactor": 1.5,
"yCrestFactor": 1.5,
"zCrestFactor": 1.5
},
"alarmFlag": false,
"scoreFlag": true
},
{
"lmt": {
"xKurtosis": 4,
"yKurtosis": 4,
"zKurtosis": 4
},
"msg": "峭度有增大趋势",
"now": {},
"alias": "电机驱动端",
"z_score": {
"xKurtosis": 1.5,
"yKurtosis": 1.5,
"zKurtosis": 1.5
},
"alarmFlag": true,
"scoreFlag": false
},
{
"lmt": {
"temp": 85
},
"msg": "表面温度",
"now": {},
"alias": "电机驱动端",
"z_score": {
"temp": 1.5
},
"alarmFlag": true,
"scoreFlag": false
}
]
},
{
"part": "motor",
"content": [
{
"lmt": {
"xFreq1x": 20,
"yFreq1x": 20,
"zFreq1x": 20
},
"msg": "电机不平衡",
"now": {},
"z_score": {
"xFreq1x": 1.5,
"yFreq1x": 1.5,
"zFreq1x": 1.5
},
"alarmLmt": {
"xFreq1x": 20,
"yFreq1x": 20,
"zFreq1x": 20
},
"alarmFlag": false,
"scoreFlag": true
},
{
"lmt": {
"xFreq2x": 60,
"yFreq2x": 60,
"zFreq2x": 60
},
"msg": "电机不对中",
"now": {},
"z_score": {
"xFreq2x": 1.5,
"yFreq2x": 1.5,
"zFreq2x": 1.5
},
"alarmLmt": {
"xFreq2x": 60,
"yFreq2x": 60,
"zFreq2x": 60
},
"alarmFlag": false,
"scoreFlag": true
},
{
"lmt": {
"xFreq3x": 60.09,
"yFreq3x": 40,
"zFreq3x": 41.35
},
"msg": "电机松动",
"now": {},
"z_score": {
"xFreq3x": 1.5,
"yFreq3x": 1.5,
"zFreq3x": 1.5
},
"alarmLmt": {
"xFreq3x": 74.09,
"yFreq3x": 40,
"zFreq3x": 41.35
},
"alarmFlag": false,
"scoreFlag": true
},
{
"lmt": {
"xVRMS": 2.22,
"yVRMS": 1.44,
"zVRMS": 2.4
},
"msg": "电机振动烈度较大",
"now": {},
"z_score": {
"xVRMS": 1.5,
"yVRMS": 1.5,
"zVRMS": 1.5
},
"alarmLmt": {
"xVRMS": 2.22,
"yVRMS": 1.44,
"zVRMS": 2.4
},
"alarmFlag": true,
"scoreFlag": true
},
{
"lmt": {
"xHighFreqRMS": 1250.8,
"yHighFreqRMS": 1163.67,
"zHighFreqRMS": 1827.95
},
"msg": "电机振动高频均方根有变大趋势",
"now": {},
"z_score": {
"xHighFreqRMS": 1.5,
"yHighFreqRMS": 1.5,
"zHighFreqRMS": 1.5
},
"alarmLmt": {
"xHighFreqRMS": 1250.8,
"yHighFreqRMS": 1163.67,
"zHighFreqRMS": 1827.95
},
"alarmFlag": false,
"scoreFlag": false
},
{
"lmt": {
"xCrestFactor": 6.78,
"yCrestFactor": 5.6,
"zCrestFactor": 6.4
},
"msg": "电机峰值因素有变大趋势",
"now": {},
"z_score": {
"xCrestFactor": 1.5,
"yCrestFactor": 1.5,
"zCrestFactor": 1.5
},
"alarmLmt": {
"xCrestFactor": 6.78,
"yCrestFactor": 5.6,
"zCrestFactor": 6.4
},
"alarmFlag": false,
"scoreFlag": true
},
{
"lmt": {
"xKurtosis": 4,
"yKurtosis": 4,
"zKurtosis": 4
},
"msg": "电机峭度有变大趋势",
"now": {},
"z_score": {
"xKurtosis": 1.5,
"yKurtosis": 1.5,
"zKurtosis": 1.5
},
"alarmLmt": {
"xKurtosis": 4,
"yKurtosis": 4,
"zKurtosis": 4
},
"alarmFlag": true,
"scoreFlag": false
}
]
},
{
"num": 1,
"part": "bearing",
"content": [
{
"lmt": {
"xseB1": 200,
"yseB1": 200,
"zseB1": 200
},
"msg": "轴承外圈故障",
"now": {},
"z_score": {
"xseB1": 1.5,
"yseB1": 1.5,
"zseB1": 1.5
},
"alarmLmt": {
"xseB1": 200,
"yseB1": 200,
"zseB1": 200
},
"alarmFlag": false,
"scoreFlag": true
},
{
"lmt": {
"xFreqBO1": 74.09,
"yFreqBO1": 26.84,
"zFreqBO1": 41.35
},
"msg": "轴承外圈故障",
"now": {},
"z_score": {
"xFreqBO1": 1.5,
"yFreqBO1": 1.5,
"zFreqBO1": 1.5
},
"alarmLmt": {
"xFreqBO1": 74.09,
"yFreqBO1": 26.84,
"zFreqBO1": 41.35
},
"alarmFlag": false,
"scoreFlag": true
}
]
},
{
"num": 2,
"part": "monitor",
"content": [
{
"lmt": {
"xVRMS": 1.21,
"yVRMS": 1.93,
"zVRMS": 2.48
},
"msg": "振动烈度有增大趋势",
"now": {},
"alias": "电机非驱动端",
"z_score": {
"xVRMS": 1.5,
"yVRMS": 1.5,
"zVRMS": 1.5
},
"alarmFlag": true,
"scoreFlag": true
},
{
"lmt": {
"xHighFreqRMS": 2000,
"yHighFreqRMS": 2000,
"zHighFreqRMS": 2000
},
"msg": "振动高频均方根有增大趋势",
"now": {},
"alias": "电机非驱动端",
"z_score": {
"xHighFreqRMS": 1.5,
"yHighFreqRMS": 1.5,
"zHighFreqRMS": 1.5
},
"alarmFlag": false,
"scoreFlag": false
},
{
"lmt": {
"xCrestFactor": 7.06,
"yCrestFactor": 5.82,
"zCrestFactor": 7.4
},
"msg": "峰值因素有增大趋势",
"now": {},
"alias": "电机非驱动端",
"z_score": {
"xCrestFactor": 1.5,
"yCrestFactor": 1.5,
"zCrestFactor": 1.5
},
"alarmFlag": false,
"scoreFlag": true
},
{
"lmt": {
"xKurtosis": 4.19,
"yKurtosis": 4,
"zKurtosis": 4.69
},
"msg": "峭度有增大趋势",
"now": {},
"alias": "电机非驱动端",
"z_score": {
"xKurtosis": 1.5,
"yKurtosis": 1.5,
"zKurtosis": 1.5
},
"alarmFlag": true,
"scoreFlag": false
},
{
"lmt": {
"temp": 85
},
"msg": "表面温度",
"now": {},
"alias": "电机非驱动端",
"z_score": {
"temp": 1.5
},
"alarmFlag": true,
"scoreFlag": false
}
]
},
{
"num": 2,
"part": "bearing",
"content": [
{
"lmt": {
"xseB2": 200,
"yseB2": 200,
"zseB2": 200
},
"msg": "轴承外圈故障",
"now": {},
"z_score": {
"xseB2": 1.5,
"yseB2": 1.5,
"zseB2": 1.5
},
"alarmLmt": {
"xseB2": 200,
"yseB2": 200,
"zseB2": 200
},
"alarmFlag": false,
"scoreFlag": true
},
{
"lmt": {
"xFreqBO2": 20,
"yFreqBO2": 20,
"zFreqBO2": 20
},
"msg": "轴承外圈故障",
"now": {},
"z_score": {
"xFreqBO2": 1.5,
"yFreqBO2": 1.5,
"zFreqBO2": 1.5
},
"alarmLmt": {
"xFreqBO2": 20,
"yFreqBO2": 20,
"zFreqBO2": 20
},
"alarmFlag": false,
"scoreFlag": true
}
]
},
{
"num": 3,
"part": "monitor",
"content": [
{
"lmt": {
"xVRMS": 1.53,
"yVRMS": 1.69,
"zVRMS": 1.97
},
"msg": "振动烈度有增大趋势",
"now": {},
"alias": "减速箱输入轴",
"z_score": {
"xVRMS": 1.5,
"yVRMS": 1.5,
"zVRMS": 1.5
},
"alarmFlag": true,
"scoreFlag": true
},
{
"lmt": {
"xHighFreqRMS": 2000,
"yHighFreqRMS": 2000,
"zHighFreqRMS": 2000
},
"msg": "振动高频均方根有增大趋势",
"now": {},
"alias": "减速箱输入轴",
"z_score": {
"xHighFreqRMS": 1.5,
"yHighFreqRMS": 1.5,
"zHighFreqRMS": 1.5
},
"alarmFlag": false,
"scoreFlag": false
},
{
"lmt": {
"xCrestFactor": 7.31,
"yCrestFactor": 6.55,
"zCrestFactor": 7.12
},
"msg": "峰值因素有增大趋势",
"now": {},
"alias": "减速箱输入轴",
"z_score": {
"xCrestFactor": 1.5,
"yCrestFactor": 1.5,
"zCrestFactor": 1.5
},
"alarmFlag": false,
"scoreFlag": true
},
{
"lmt": {
"xKurtosis": 4,
"yKurtosis": 4,
"zKurtosis": 4
},
"msg": "峭度有增大趋势",
"now": {},
"alias": "减速箱输入轴",
"z_score": {
"xKurtosis": 1.5,
"yKurtosis": 1.5,
"zKurtosis": 1.5
},
"alarmFlag": true,
"scoreFlag": false
},
{
"lmt": {
"temp": 85
},
"msg": "表面温度",
"now": {},
"alias": "减速箱输入轴",
"z_score": {
"temp": 1.5
},
"alarmFlag": true,
"scoreFlag": false
}
]
},
{
"num": 3,
"part": "bearing",
"content": [
{
"lmt": {
"xseB3": 200,
"yseB3": 200,
"zseB3": 200
},
"msg": "轴承外圈故障",
"now": {},
"z_score": {
"xseB3": 1.5,
"yseB3": 1.5,
"zseB3": 1.5
},
"alarmLmt": {
"xseB3": 200,
"yseB3": 200,
"zseB3": 200
},
"alarmFlag": false,
"scoreFlag": true
},
{
"lmt": {},
"msg": "轴承外圈故障",
"now": {},
"z_score": {},
"alarmLmt": {},
"alarmFlag": false,
"scoreFlag": true
}
]
},
{
"num": 1,
"part": "gear",
"content": [
{
"lmt": {
"xFreq1xGMF1": 215.48,
"yFreq1xGMF1": 650.05,
"zFreq1xGMF1": 200
},
"msg": "齿轮安装问题",
"now": {},
"z_score": {
"xFreq1xGMF1": 1.5,
"yFreq1xGMF1": 1.5,
"zFreq1xGMF1": 1.5
},
"alarmLmt": {
"xFreq1xGMF1": 215.48,
"yFreq1xGMF1": 650.05,
"zFreq1xGMF1": 200
},
"alarmFlag": false,
"scoreFlag": true
},
{
"lmt": {
"xFreq2xGMF1": 400,
"yFreq2xGMF1": 400,
"zFreq2xGMF1": 400
},
"msg": "齿面存在磨损",
"now": {},
"z_score": {
"xFreq2xGMF1": 1.5,
"yFreq2xGMF1": 1.5,
"zFreq2xGMF1": 1.5
},
"alarmLmt": {
"xFreq2xGMF1": 400,
"yFreq2xGMF1": 400,
"zFreq2xGMF1": 400
},
"alarmFlag": false,
"scoreFlag": true
},
{
"lmt": {
"xFreq3xGMF1": 400,
"yFreq3xGMF1": 400,
"zFreq3xGMF1": 400
},
"msg": "齿面存在磨损",
"now": {},
"z_score": {
"xFreq3xGMF1": 1.5,
"yFreq3xGMF1": 1.5,
"zFreq3xGMF1": 1.5
},
"alarmLmt": {
"xFreq3xGMF1": 400,
"yFreq3xGMF1": 400,
"zFreq3xGMF1": 400
},
"alarmFlag": false,
"scoreFlag": true
}
]
},
{
"num": 4,
"part": "monitor",
"content": [
{
"lmt": {
"xVRMS": 1.2,
"yVRMS": 1.2,
"zVRMS": 1.65
},
"msg": "振动烈度有增大趋势",
"now": {},
"alias": "减速箱输出轴",
"z_score": {
"xVRMS": 1.5,
"yVRMS": 1.5,
"zVRMS": 1.5
},
"alarmFlag": true,
"scoreFlag": true
},
{
"lmt": {
"xHighFreqRMS": 2000,
"yHighFreqRMS": 2000,
"zHighFreqRMS": 2000
},
"msg": "振动高频均方根有增大趋势",
"now": {},
"alias": "减速箱输出轴",
"z_score": {
"xHighFreqRMS": 1.5,
"yHighFreqRMS": 1.5,
"zHighFreqRMS": 1.5
},
"alarmFlag": false,
"scoreFlag": false
},
{
"lmt": {
"xCrestFactor": 7.11,
"yCrestFactor": 4,
"zCrestFactor": 5.69
},
"msg": "峰值因素有增大趋势",
"now": {},
"alias": "减速箱输出轴",
"z_score": {
"xCrestFactor": 1.5,
"yCrestFactor": 1.5,
"zCrestFactor": 1.5
},
"alarmFlag": false,
"scoreFlag": true
},
{
"lmt": {
"xKurtosis": 4,
"yKurtosis": 4,
"zKurtosis": 4
},
"msg": "峭度有增大趋势",
"now": {},
"alias": "减速箱输出轴",
"z_score": {
"xKurtosis": 1.5,
"yKurtosis": 1.5,
"zKurtosis": 1.5
},
"alarmFlag": true,
"scoreFlag": false
},
{
"lmt": {
"temp": 85
},
"msg": "表面温度",
"now": {},
"alias": "减速箱输出轴",
"z_score": {
"temp": 1.5
},
"alarmFlag": true,
"scoreFlag": false
}
]
},
{
"num": 4,
"part": "bearing",
"content": [
{
"lmt": {
"xseB4": 200,
"yseB4": 200,
"zseB4": 200
},
"msg": "轴承外圈故障",
"now": {},
"z_score": {
"xseB4": 1.5,
"yseB4": 1.5,
"zseB4": 1.5
},
"alarmLmt": {
"xseB4": 200,
"yseB4": 200,
"zseB4": 200
},
"alarmFlag": false,
"scoreFlag": true
},
{
"lmt": {},
"msg": "轴承外圈故障",
"now": {},
"z_score": {},
"alarmLmt": {},
"alarmFlag": false,
"scoreFlag": true
}
]
},
{
"num": 2,
"part": "gear",
"content": [
{
"lmt": {},
"msg": "齿轮安装问题",
"now": {},
"z_score": {},
"alarmLmt": {},
"alarmFlag": false,
"scoreFlag": true
},
{
"lmt": {},
"msg": "齿面存在磨损",
"now": {},
"z_score": {},
"alarmLmt": {},
"alarmFlag": false,
"scoreFlag": true
},
{
"lmt": {},
"msg": "齿面存在磨损",
"now": {},
"z_score": {},
"alarmLmt": {},
"alarmFlag": false,
"scoreFlag": true
}
]
},
{
"num": 5,
"part": "monitor",
"content": [
{
"lmt": {
"xVRMS": 2.03,
"yVRMS": 1.2,
"zVRMS": 1.76
},
"msg": "振动烈度有增大趋势",
"now": {},
"alias": "主齿轮驱动端",
"z_score": {
"xVRMS": 1.5,
"yVRMS": 1.5,
"zVRMS": 1.5
},
"alarmFlag": true,
"scoreFlag": true
},
{
"lmt": {
"xHighFreqRMS": 2000,
"yHighFreqRMS": 2000,
"zHighFreqRMS": 2000
},
"msg": "振动高频均方根有增大趋势",
"now": {},
"alias": "主齿轮驱动端",
"z_score": {
"xHighFreqRMS": 1.5,
"yHighFreqRMS": 1.5,
"zHighFreqRMS": 1.5
},
"alarmFlag": false,
"scoreFlag": false
},
{
"lmt": {
"xCrestFactor": 7.85,
"yCrestFactor": 8.28,
"zCrestFactor": 6.15
},
"msg": "峰值因素有增大趋势",
"now": {},
"alias": "主齿轮驱动端",
"z_score": {
"xCrestFactor": 1.5,
"yCrestFactor": 1.5,
"zCrestFactor": 1.5
},
"alarmFlag": false,
"scoreFlag": true
},
{
"lmt": {
"xKurtosis": 8.78,
"yKurtosis": 8.3,
"zKurtosis": 4.67
},
"msg": "峭度有增大趋势",
"now": {},
"alias": "主齿轮驱动端",
"z_score": {
"xKurtosis": 1.5,
"yKurtosis": 1.5,
"zKurtosis": 1.5
},
"alarmFlag": true,
"scoreFlag": false
},
{
"lmt": {
"temp": 85
},
"msg": "表面温度",
"now": {},
"alias": "主齿轮驱动端",
"z_score": {
"temp": 1.5
},
"alarmFlag": true,
"scoreFlag": false
}
]
},
{
"num": 5,
"part": "bearing",
"content": [
{
"lmt": {
"xseB5": 200,
"yseB5": 200,
"zseB5": 200
},
"msg": "轴承外圈故障",
"now": {},
"z_score": {
"xseB5": 1.5,
"yseB5": 1.5,
"zseB5": 1.5
},
"alarmLmt": {
"xseB5": 200,
"yseB5": 200,
"zseB5": 200
},
"alarmFlag": false,
"scoreFlag": true
},
{
"lmt": {
"xFreqBO5": 20,
"yFreqBO5": 20,
"zFreqBO5": 20
},
"msg": "轴承外圈故障",
"now": {},
"z_score": {
"xFreqBO5": 1.5,
"yFreqBO5": 1.5,
"zFreqBO5": 1.5
},
"alarmLmt": {
"xFreqBO5": 20,
"yFreqBO5": 20,
"zFreqBO5": 20
},
"alarmFlag": false,
"scoreFlag": true
}
]
},
{
"num": 3,
"part": "gear",
"content": [
{
"lmt": {},
"msg": "齿轮安装问题",
"now": {},
"z_score": {},
"alarmLmt": {},
"alarmFlag": false,
"scoreFlag": true
},
{
"lmt": {},
"msg": "齿面存在磨损",
"now": {},
"z_score": {},
"alarmLmt": {},
"alarmFlag": false,
"scoreFlag": true
},
{
"lmt": {},
"msg": "齿面存在磨损",
"now": {},
"z_score": {},
"alarmLmt": {},
"alarmFlag": false,
"scoreFlag": true
}
]
},
{
"num": 6,
"part": "monitor",
"content": [
{
"lmt": {
"xVRMS": 1.2,
"yVRMS": 2.54,
"zVRMS": 1.55
},
"msg": "振动烈度有增大趋势",
"now": {},
"alias": "主齿轮非驱动端",
"z_score": {
"xVRMS": 1.5,
"yVRMS": 1.5,
"zVRMS": 1.5
},
"alarmFlag": true,
"scoreFlag": true
},
{
"lmt": {
"xHighFreqRMS": 2000,
"yHighFreqRMS": 2000,
"zHighFreqRMS": 2000
},
"msg": "振动高频均方根有增大趋势",
"now": {},
"alias": "主齿轮非驱动端",
"z_score": {
"xHighFreqRMS": 1.5,
"yHighFreqRMS": 1.5,
"zHighFreqRMS": 1.5
},
"alarmFlag": false,
"scoreFlag": false
},
{
"lmt": {
"xCrestFactor": 8.2,
"yCrestFactor": 7.54,
"zCrestFactor": 6.88
},
"msg": "峰值因素有增大趋势",
"now": {},
"alias": "主齿轮非驱动端",
"z_score": {
"xCrestFactor": 1.5,
"yCrestFactor": 1.5,
"zCrestFactor": 1.5
},
"alarmFlag": false,
"scoreFlag": true
},
{
"lmt": {
"xKurtosis": 7.69,
"yKurtosis": 7.13,
"zKurtosis": 6.39
},
"msg": "峭度有增大趋势",
"now": {},
"alias": "主齿轮非驱动端",
"z_score": {
"xKurtosis": 1.5,
"yKurtosis": 1.5,
"zKurtosis": 1.5
},
"alarmFlag": true,
"scoreFlag": false
},
{
"lmt": {
"temp": 85
},
"msg": "表面温度",
"now": {},
"alias": "主齿轮非驱动端",
"z_score": {
"temp": 1.5
},
"alarmFlag": true,
"scoreFlag": false
}
]
},
{
"num": 6,
"part": "bearing",
"content": [
{
"lmt": {
"xseB6": 200,
"yseB6": 200,
"zseB6": 200
},
"msg": "轴承外圈故障",
"now": {},
"z_score": {
"xseB6": 1.5,
"yseB6": 1.5,
"zseB6": 1.5
},
"alarmLmt": {
"xseB6": 200,
"yseB6": 200,
"zseB6": 200
},
"alarmFlag": false,
"scoreFlag": true
},
{
"lmt": {
"xFreqBO6": 20,
"yFreqBO6": 20,
"zFreqBO6": 20
},
"msg": "轴承外圈故障",
"now": {},
"z_score": {
"xFreqBO6": 1.5,
"yFreqBO6": 1.5,
"zFreqBO6": 1.5
},
"alarmLmt": {
"xFreqBO6": 20,
"yFreqBO6": 20,
"zFreqBO6": 20
},
"alarmFlag": false,
"scoreFlag": true
}
]
}
]
\ No newline at end of file
{
"code": 1,
"message": "success",
"data": {
"reducerTypeNo": "RTN768749388666646528",
"reducerTypeName": "涂布机",
"reducerGeneraNo": "RGN00024",
"reducerGeneraName": "焊机",
"reducerGeneraChName": "焊机",
"reducerNo": "RN768751124307390464",
"factoryNo": "240607",
"reducerSn": "240607",
"model": "NARAENANOTECH CORPORATION",
"reducerName": "HKC-涂布机",
"reducerBrand": "Witium",
"reducerModelNo": "RMN768750759950966784",
"reducerModel": "NARAENANOTECH CORPORATION",
"companyNo": "CN770187068044496896",
"companyName": "芯享科技-长沙惠科光电有限公司",
"industryCN": "智能制造",
"industryEN": "Intelligent manufacturing",
"installTime": 1717755418696,
"releaseTime": 1717755418696,
"witLinkRmInfoVo": {},
"gatewayMonitorNo": "RM768751124299001868",
"basicJson": "{\"radio\": \"10\", \"inputPower\": \"90000\", \"inputSpeed\": 1500, \"outputTorque\": \"100\", \"powerFrequency\": 50}",
"upkeepJson": "{\"intervalTime\": 10000, \"reminderTime\": 336, \"maintenanceTime\": 10000}",
"gearList": [],
"bearingList": [],
"impellerList": [],
"screwList": [],
"fmScrewList": [],
"sleeveBearingList": [],
"shaftList": [
{
"shaftNo": "PN768751124299001858",
"shaftName": "shaft1",
"shaftAlias": "VCD上盖2",
"configJson": "{\"num\": 1, \"freq\": 1}",
"isBeMonitor": 1
},
{
"shaftNo": "PN768751124299001859",
"shaftName": "shaft2",
"shaftAlias": "VCD上盖3",
"configJson": "{\"num\": 2, \"freq\": 1}",
"isBeMonitor": 1
},
{
"shaftNo": "PN768751124299001860",
"shaftName": "shaft3",
"shaftAlias": "Robot底座1",
"configJson": "{\"num\": 3, \"freq\": 1}",
"isBeMonitor": 1
},
{
"shaftNo": "PN768751124299001861",
"shaftName": "shaft4",
"shaftAlias": "Coater底座1",
"configJson": "{\"num\": 4, \"freq\": 1}",
"isBeMonitor": 1
},
{
"shaftNo": "PN768751124299001862",
"shaftName": "shaft5",
"shaftAlias": "Coater底座2",
"configJson": "{\"num\": 5, \"freq\": 1}",
"isBeMonitor": 1
},
{
"shaftNo": "PN768751124299001863",
"shaftName": "shaft6",
"shaftAlias": "传送Gripper2",
"configJson": "{\"num\": 6, \"freq\": 1}",
"isBeMonitor": 1
},
{
"shaftNo": "PN768751124299001864",
"shaftName": "shaft7",
"shaftAlias": "Lift螺杆1",
"configJson": "{\"num\": 7, \"freq\": 1}",
"isBeMonitor": 1
},
{
"shaftNo": "PN768751124299001865",
"shaftName": "shaft8",
"shaftAlias": "Lift螺杆2",
"configJson": "{\"num\": 8, \"freq\": 1}",
"isBeMonitor": 1
},
{
"shaftNo": "PN768751124299001866",
"shaftName": "shaft9",
"shaftAlias": "Nozzle",
"configJson": "{\"num\": 9, \"freq\": 1}",
"isBeMonitor": 1
},
{
"shaftNo": "PN768751124299001867",
"shaftName": "shaft10",
"shaftAlias": "Robot底座2",
"configJson": "{\"num\": 10, \"freq\": 1}",
"isBeMonitor": 1
},
{
"shaftNo": "PN768751124299001868",
"shaftName": "shaft11",
"shaftAlias": "传送Gripper1",
"configJson": "{\"num\": 11, \"freq\": 1}",
"isBeMonitor": 1
}
],
"beltList": [],
"supposeMotorList": [
{
"supposeMotorNo": "PN768751124299001857",
"supposeMotorName": "supposeMotor1",
"configJson": "{\"inputSpeed\": 1500}"
}
],
"useGatewayInfoList": [
{
"gatewayNo": "768748252400062464",
"gatewayType": "WTG906F",
"gatewaySn": "22043097",
"isUniqueBound": 0,
"isOperation": 1,
"genera": 1
},
{
"gatewayNo": "768748405949337600",
"gatewayType": "WTG906F",
"gatewaySn": "22043098",
"isUniqueBound": 0,
"isOperation": 1,
"genera": 1
}
],
"period": 60,
"periodFlg": 1,
"wPeriod": 60,
"wPeriodFlg": 1,
"delay": 1000,
"bootJdg": 1,
"monitorList": [
{
"monitorNo": "RM768751124299001856",
"gatewayNo": "768748252400062464",
"gatewayType": "WTG906F",
"gatewaySn": "22043097",
"sensorNo": "768748252400062466",
"addr": 1,
"sensorType": "WTS4V3A",
"sensorSn": "2204309701",
"addressName": "VCD上盖1",
"xpixel": 201,
"ypixel": 71,
"isGatewayMonitor": 0,
"workMode": 1,
"sensorModelNo": "SM00001",
"sensorModelName": "WTS4V3C",
"sensorAxialNo": "SMA00002",
"axialName": "A(z) / RH(y) / RV(x)",
"axialMappingList": [
{
"name": "x",
"value": "rv"
},
{
"name": "y",
"value": "rh"
},
{
"name": "z",
"value": "a"
}
],
"auxiliaryPointFlg": 0,
"targetList": [
"motor"
],
"odrConfig": 0,
"sampSum": 16384,
"hpfEn": 1,
"genera": 1
},
{
"monitorNo": "RM768751124299001857",
"gatewayNo": "768748252400062464",
"gatewayType": "WTG906F",
"gatewaySn": "22043097",
"sensorNo": "768748252400062467",
"addr": 2,
"sensorType": "WTS4V3A",
"sensorSn": "2204309702",
"addressName": "VCD上盖2",
"xpixel": 198,
"ypixel": 142,
"isGatewayMonitor": 0,
"workMode": 1,
"sensorModelNo": "SM00001",
"sensorModelName": "WTS4V3C",
"sensorAxialNo": "SMA00002",
"axialName": "A(z) / RH(y) / RV(x)",
"axialMappingList": [
{
"name": "x",
"value": "rv"
},
{
"name": "y",
"value": "rh"
},
{
"name": "z",
"value": "a"
}
],
"auxiliaryPointFlg": 0,
"targetList": [
"shaft1"
],
"odrConfig": 0,
"sampSum": 16384,
"hpfEn": 1,
"genera": 1
},
{
"monitorNo": "RM768751124299001858",
"gatewayNo": "768748252400062464",
"gatewayType": "WTG906F",
"gatewaySn": "22043097",
"sensorNo": "768748252400062468",
"addr": 3,
"sensorType": "WTS4V3A",
"sensorSn": "2204309703",
"addressName": "VCD上盖3",
"xpixel": 86,
"ypixel": 230,
"isGatewayMonitor": 0,
"workMode": 1,
"sensorModelNo": "SM00001",
"sensorModelName": "WTS4V3C",
"sensorAxialNo": "SMA00002",
"axialName": "A(z) / RH(y) / RV(x)",
"axialMappingList": [
{
"name": "x",
"value": "rv"
},
{
"name": "y",
"value": "rh"
},
{
"name": "z",
"value": "a"
}
],
"auxiliaryPointFlg": 0,
"targetList": [
"shaft2"
],
"odrConfig": 0,
"sampSum": 16384,
"hpfEn": 1,
"genera": 1
},
{
"monitorNo": "RM768751124299001859",
"gatewayNo": "768748252400062464",
"gatewayType": "WTG906F",
"gatewaySn": "22043097",
"sensorNo": "768748252400062469",
"addr": 4,
"sensorType": "WTS4V3A",
"sensorSn": "2204309704",
"addressName": "Robot底座1",
"xpixel": 234,
"ypixel": 343,
"isGatewayMonitor": 0,
"workMode": 1,
"sensorModelNo": "SM00001",
"sensorModelName": "WTS4V3C",
"sensorAxialNo": "SMA00002",
"axialName": "A(z) / RH(y) / RV(x)",
"axialMappingList": [
{
"name": "x",
"value": "rv"
},
{
"name": "y",
"value": "rh"
},
{
"name": "z",
"value": "a"
}
],
"auxiliaryPointFlg": 0,
"targetList": [
"shaft3"
],
"odrConfig": 0,
"sampSum": 16384,
"hpfEn": 1,
"genera": 1
},
{
"monitorNo": "RM768751124299001860",
"gatewayNo": "768748252400062464",
"gatewayType": "WTG906F",
"gatewaySn": "22043097",
"sensorNo": "768748252400062470",
"addr": 5,
"sensorType": "WTS4V3A",
"sensorSn": "2204309705",
"addressName": "Coater底座1",
"xpixel": 427,
"ypixel": 346,
"isGatewayMonitor": 0,
"workMode": 1,
"sensorModelNo": "SM00001",
"sensorModelName": "WTS4V3C",
"sensorAxialNo": "SMA00006",
"axialName": "A(y) / RH(x) / RV(z)",
"axialMappingList": [
{
"name": "x",
"value": "rh"
},
{
"name": "y",
"value": "a"
},
{
"name": "z",
"value": "rv"
}
],
"auxiliaryPointFlg": 0,
"targetList": [
"shaft4"
],
"odrConfig": 0,
"sampSum": 16384,
"hpfEn": 1,
"genera": 1
},
{
"monitorNo": "RM768751124299001861",
"gatewayNo": "768748252400062464",
"gatewayType": "WTG906F",
"gatewaySn": "22043097",
"sensorNo": "768748252400062471",
"addr": 6,
"sensorType": "WTS4V3A",
"sensorSn": "2204309706",
"addressName": "Coater底座2",
"xpixel": 290,
"ypixel": 260,
"isGatewayMonitor": 0,
"workMode": 1,
"sensorModelNo": "SM00001",
"sensorModelName": "WTS4V3A",
"sensorAxialNo": "SMA00005",
"axialName": "A(y) / RH(z) / RV(x)",
"axialMappingList": [
{
"name": "x",
"value": "rv"
},
{
"name": "y",
"value": "a"
},
{
"name": "z",
"value": "rh"
}
],
"auxiliaryPointFlg": 0,
"targetList": [
"shaft5"
],
"odrConfig": 0,
"sampSum": 16384,
"hpfEn": 1,
"genera": 1
},
{
"monitorNo": "RM768751124299001862",
"gatewayNo": "768748405949337600",
"gatewayType": "WTG906F",
"gatewaySn": "22043098",
"sensorNo": "768748405949337602",
"addr": 7,
"sensorType": "WTS4V3A",
"sensorSn": "2204309801",
"addressName": "传送Gripper 1",
"xpixel": 357,
"ypixel": 293,
"isGatewayMonitor": 0,
"workMode": 1,
"sensorModelNo": "SM00001",
"sensorModelName": "WTS4V3C",
"sensorAxialNo": "SMA00004",
"axialName": "A(x) / RH(y) / RV(z)",
"axialMappingList": [
{
"name": "x",
"value": "a"
},
{
"name": "y",
"value": "rh"
},
{
"name": "z",
"value": "rv"
}
],
"auxiliaryPointFlg": 0,
"targetList": [
"supposeMotor1",
"shaft11"
],
"odrConfig": 0,
"sampSum": 16384,
"hpfEn": 1,
"genera": 1
},
{
"monitorNo": "RM768751124299001863",
"gatewayNo": "768748405949337600",
"gatewayType": "WTG906F",
"gatewaySn": "22043098",
"sensorNo": "768748405949337603",
"addr": 8,
"sensorType": "WTS4V3A",
"sensorSn": "2204309802",
"addressName": "传送Gripper 2",
"xpixel": 576,
"ypixel": 262,
"isGatewayMonitor": 0,
"workMode": 1,
"sensorModelNo": "SM00001",
"sensorModelName": "WTS4V3C",
"sensorAxialNo": "SMA00006",
"axialName": "A(y) / RH(x) / RV(z)",
"axialMappingList": [
{
"name": "x",
"value": "rh"
},
{
"name": "y",
"value": "a"
},
{
"name": "z",
"value": "rv"
}
],
"auxiliaryPointFlg": 0,
"targetList": [
"shaft6"
],
"odrConfig": 0,
"sampSum": 16384,
"hpfEn": 1,
"genera": 1
},
{
"monitorNo": "RM768751124299001864",
"gatewayNo": "768748405949337600",
"gatewayType": "WTG906F",
"gatewaySn": "22043098",
"sensorNo": "768748405949337604",
"addr": 9,
"sensorType": "WTS4V3A",
"sensorSn": "2204309803",
"addressName": "Lift螺杆1",
"xpixel": 576,
"ypixel": 225,
"isGatewayMonitor": 0,
"workMode": 1,
"sensorModelNo": "SM00001",
"sensorModelName": "WTS4V3C",
"sensorAxialNo": "SMA00005",
"axialName": "A(y) / RH(z) / RV(x)",
"axialMappingList": [
{
"name": "x",
"value": "rv"
},
{
"name": "y",
"value": "a"
},
{
"name": "z",
"value": "rh"
}
],
"auxiliaryPointFlg": 0,
"targetList": [
"shaft7"
],
"odrConfig": 0,
"sampSum": 16384,
"hpfEn": 1,
"genera": 1
},
{
"monitorNo": "RM768751124299001865",
"gatewayNo": "768748405949337600",
"gatewayType": "WTG906F",
"gatewaySn": "22043098",
"sensorNo": "768748405949337605",
"addr": 10,
"sensorType": "WTS4V3A",
"sensorSn": "2204309804",
"addressName": "Lift螺杆2",
"xpixel": 386,
"ypixel": 264,
"isGatewayMonitor": 0,
"workMode": 1,
"sensorModelNo": "SM00001",
"sensorModelName": "WTS4V3C",
"sensorAxialNo": "SMA00004",
"axialName": "A(x) / RH(y) / RV(z)",
"axialMappingList": [
{
"name": "x",
"value": "a"
},
{
"name": "y",
"value": "rh"
},
{
"name": "z",
"value": "rv"
}
],
"auxiliaryPointFlg": 0,
"targetList": [
"shaft8"
],
"odrConfig": 0,
"sampSum": 16384,
"hpfEn": 1,
"genera": 1
},
{
"monitorNo": "RM768751124299001866",
"gatewayNo": "768748405949337600",
"gatewayType": "WTG906F",
"gatewaySn": "22043098",
"sensorNo": "768748405949337606",
"addr": 11,
"sensorType": "WTS4V3A",
"sensorSn": "2204309805",
"addressName": "Nozzle Gantry",
"xpixel": 446,
"ypixel": 169,
"isGatewayMonitor": 0,
"workMode": 1,
"sensorModelNo": "SM00001",
"sensorModelName": "WTS4V3C",
"sensorAxialNo": "SMA00002",
"axialName": "A(z) / RH(y) / RV(x)",
"axialMappingList": [
{
"name": "x",
"value": "rv"
},
{
"name": "y",
"value": "rh"
},
{
"name": "z",
"value": "a"
}
],
"auxiliaryPointFlg": 0,
"targetList": [
"shaft9"
],
"odrConfig": 0,
"sampSum": 16384,
"hpfEn": 1,
"genera": 1
},
{
"monitorNo": "RM768751124299001867",
"gatewayNo": "768748405949337600",
"gatewayType": "WTG906F",
"gatewaySn": "22043098",
"sensorNo": "768748405949337607",
"addr": 12,
"sensorType": "WTS4V3A",
"sensorSn": "2204309806",
"addressName": "Robot底座2",
"xpixel": 681,
"ypixel": 301,
"isGatewayMonitor": 0,
"workMode": 1,
"sensorModelNo": "SM00001",
"sensorModelName": "WTS4V3C",
"sensorAxialNo": "SMA00002",
"axialName": "A(z) / RH(y) / RV(x)",
"axialMappingList": [
{
"name": "x",
"value": "rv"
},
{
"name": "y",
"value": "rh"
},
{
"name": "z",
"value": "a"
}
],
"auxiliaryPointFlg": 0,
"targetList": [
"shaft10"
],
"odrConfig": 0,
"sampSum": 16384,
"hpfEn": 1,
"genera": 1
}
],
"thSettingSel": 0,
"webThresholdJson": {
"reducerThreshold": "{\"xFreq3x\":{\"hh\":40,\"h\":32,\"hhh\":48,\"l\":0},\"xFreq1x\":{\"hh\":20,\"h\":16,\"hhh\":24,\"l\":0},\"xFreq2x\":{\"hh\":60,\"h\":48,\"hhh\":72,\"l\":0},\"yFreq1x\":{\"hh\":24.26,\"h\":19.41,\"hhh\":29.11,\"l\":0},\"zFreq3x\":{\"hh\":40,\"h\":32,\"hhh\":48,\"l\":0},\"zFreq1x\":{\"hh\":23.71,\"h\":18.97,\"hhh\":28.45,\"l\":0},\"zFreq2x\":{\"hh\":60,\"h\":48,\"hhh\":72,\"l\":0},\"yFreq2x\":{\"hh\":60,\"h\":48,\"hhh\":72,\"l\":0},\"yFreq3x\":{\"hh\":40,\"h\":32,\"hhh\":48,\"l\":0}}",
"tempThreshold": "{\"oTemp\":{\"hh\":85,\"h\":68,\"hhh\":102,\"l\":0},\"bTemp\":{\"hh\":85,\"h\":68,\"hhh\":102,\"l\":0},\"aTemp\":{\"hh\":85,\"h\":68,\"hhh\":102,\"l\":0},\"cTemp\":{\"hh\":85,\"h\":68,\"hhh\":102,\"l\":0}}",
"bearingThreshold": [],
"gearThreshold": [],
"impellerThreshold": [],
"screwThreshold": [],
"fmScrewThreshold": [],
"sleeveBearingThreshold": [],
"shaftThreshold": [
"{\"num\": 1, \"xshaft1xF1\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"xshaft2xF1\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"xshaft3xF1\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}, \"yshaft1xF1\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"yshaft2xF1\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"yshaft3xF1\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}, \"zshaft1xF1\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"zshaft2xF1\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"zshaft3xF1\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}}",
"{\"num\": 2, \"xshaft1xF2\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"xshaft2xF2\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"xshaft3xF2\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}, \"yshaft1xF2\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"yshaft2xF2\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"yshaft3xF2\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}, \"zshaft1xF2\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"zshaft2xF2\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"zshaft3xF2\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}}",
"{\"num\": 3, \"xshaft1xF3\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"xshaft2xF3\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"xshaft3xF3\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}, \"yshaft1xF3\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"yshaft2xF3\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"yshaft3xF3\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}, \"zshaft1xF3\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"zshaft2xF3\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"zshaft3xF3\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}}",
"{\"num\": 4, \"xshaft1xF4\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"xshaft2xF4\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"xshaft3xF4\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}, \"yshaft1xF4\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"yshaft2xF4\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"yshaft3xF4\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}, \"zshaft1xF4\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"zshaft2xF4\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"zshaft3xF4\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}}",
"{\"num\": 5, \"xshaft1xF5\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"xshaft2xF5\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"xshaft3xF5\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}, \"yshaft1xF5\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"yshaft2xF5\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"yshaft3xF5\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}, \"zshaft1xF5\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"zshaft2xF5\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"zshaft3xF5\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}}",
"{\"num\": 6, \"xshaft1xF6\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"xshaft2xF6\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"xshaft3xF6\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}, \"yshaft1xF6\": {\"h\": 838.18, \"l\": 0, \"hh\": 1047.72, \"hhh\": 1257.26}, \"yshaft2xF6\": {\"h\": 838.18, \"l\": 0, \"hh\": 1047.72, \"hhh\": 1257.26}, \"yshaft3xF6\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}, \"zshaft1xF6\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"zshaft2xF6\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"zshaft3xF6\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}}",
"{\"num\": 7, \"xshaft1xF7\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"xshaft2xF7\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"xshaft3xF7\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}, \"yshaft1xF7\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"yshaft2xF7\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"yshaft3xF7\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}, \"zshaft1xF7\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"zshaft2xF7\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"zshaft3xF7\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}}",
"{\"num\": 8, \"xshaft1xF8\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"xshaft2xF8\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"xshaft3xF8\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}, \"yshaft1xF8\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"yshaft2xF8\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"yshaft3xF8\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}, \"zshaft1xF8\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"zshaft2xF8\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"zshaft3xF8\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}}",
"{\"num\": 9, \"xshaft1xF9\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"xshaft2xF9\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"xshaft3xF9\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}, \"yshaft1xF9\": {\"h\": 206.36, \"l\": 0, \"hh\": 257.95, \"hhh\": 309.54}, \"yshaft2xF9\": {\"h\": 206.36, \"l\": 0, \"hh\": 257.95, \"hhh\": 309.54}, \"yshaft3xF9\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}, \"zshaft1xF9\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"zshaft2xF9\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"zshaft3xF9\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}}",
"{\"num\": 10, \"xshaft1xF10\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"xshaft2xF10\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"xshaft3xF10\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}, \"yshaft1xF10\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"yshaft2xF10\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"yshaft3xF10\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}, \"zshaft1xF10\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"zshaft2xF10\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"zshaft3xF10\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}}",
"{\"num\": 11, \"xshaft1xF11\": {\"h\": 826.27, \"l\": 0, \"hh\": 1032.84, \"hhh\": 1239.41}, \"xshaft2xF11\": {\"h\": 826.27, \"l\": 0, \"hh\": 1032.84, \"hhh\": 1239.41}, \"xshaft3xF11\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}, \"yshaft1xF11\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"yshaft2xF11\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"yshaft3xF11\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}, \"zshaft1xF11\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"zshaft2xF11\": {\"h\": 80, \"l\": 0, \"hh\": 100, \"hhh\": 120}, \"zshaft3xF11\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}}"
],
"beltThreshold": [],
"supposeMotorThreshold": [
"{\"openThreshold\": {\"xVar\": 0}}"
],
"monitorThreshold": [
"{\"addr\": \"1\", \"temp\": {\"h\": 68, \"l\": 0, \"hh\": 85, \"hhh\": 102}, \"xRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"yRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"zRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"xVRMS\": {\"h\": 1.69, \"l\": 0, \"hh\": 2.11, \"hhh\": 2.53}, \"yVRMS\": {\"h\": 1.31, \"l\": 0, \"hh\": 1.64, \"hhh\": 1.97}, \"zVRMS\": {\"h\": 4.53, \"l\": 0, \"hh\": 5.66, \"hhh\": 6.79}, \"xKurtosis\": {\"h\": 52.83, \"l\": 0, \"hh\": 66.04, \"hhh\": 79.25}, \"yKurtosis\": {\"h\": 54.14, \"l\": 0, \"hh\": 67.68, \"hhh\": 81.22}, \"zKurtosis\": {\"h\": 103.5, \"l\": 0, \"hh\": 129.37, \"hhh\": 155.24}, \"addressName\": \"VCD上盖1\", \"xCrestFactor\": {\"h\": 6.54, \"l\": 0, \"hh\": 8.17, \"hhh\": 9.8}, \"xHighFreqRMS\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}, \"yCrestFactor\": {\"h\": 7.29, \"l\": 0, \"hh\": 9.11, \"hhh\": 10.93}, \"yHighFreqRMS\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}, \"zCrestFactor\": {\"h\": 6.62, \"l\": 0, \"hh\": 8.28, \"hhh\": 9.94}, \"zHighFreqRMS\": {\"h\": 800, \"l\": 0, \"hh\": 1000, \"hhh\": 1200}}",
"{\"addr\": \"2\", \"temp\": {\"h\": 68, \"l\": 0, \"hh\": 85, \"hhh\": 102}, \"xRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"yRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"zRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"xVRMS\": {\"h\": 1.4, \"l\": 0, \"hh\": 1.75, \"hhh\": 2.1}, \"yVRMS\": {\"h\": 1.7, \"l\": 0, \"hh\": 2.12, \"hhh\": 2.54}, \"zVRMS\": {\"h\": 4.69, \"l\": 0, \"hh\": 5.86, \"hhh\": 7.03}, \"xKurtosis\": {\"h\": 27.61, \"l\": 0, \"hh\": 34.51, \"hhh\": 41.41}, \"yKurtosis\": {\"h\": 26.44, \"l\": 0, \"hh\": 33.05, \"hhh\": 39.66}, \"zKurtosis\": {\"h\": 61.38, \"l\": 0, \"hh\": 76.73, \"hhh\": 92.08}, \"addressName\": \"VCD上盖2\", \"xCrestFactor\": {\"h\": 7.21, \"l\": 0, \"hh\": 9.01, \"hhh\": 10.81}, \"xHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}, \"yCrestFactor\": {\"h\": 7.19, \"l\": 0, \"hh\": 8.99, \"hhh\": 10.79}, \"yHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}, \"zCrestFactor\": {\"h\": 5.66, \"l\": 0, \"hh\": 7.07, \"hhh\": 8.48}, \"zHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}}",
"{\"addr\": \"3\", \"temp\": {\"h\": 68, \"l\": 0, \"hh\": 85, \"hhh\": 102}, \"xRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"yRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"zRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"xVRMS\": {\"h\": 0.96, \"l\": 0, \"hh\": 1.2, \"hhh\": 1.44}, \"yVRMS\": {\"h\": 1.25, \"l\": 0, \"hh\": 1.56, \"hhh\": 1.87}, \"zVRMS\": {\"h\": 4.02, \"l\": 0, \"hh\": 5.03, \"hhh\": 6.04}, \"xKurtosis\": {\"h\": 23.8, \"l\": 0, \"hh\": 29.75, \"hhh\": 35.7}, \"yKurtosis\": {\"h\": 20.17, \"l\": 0, \"hh\": 25.21, \"hhh\": 30.25}, \"zKurtosis\": {\"h\": 60.71, \"l\": 0, \"hh\": 75.89, \"hhh\": 91.07}, \"addressName\": \"VCD上盖3\", \"xCrestFactor\": {\"h\": 6.06, \"l\": 0, \"hh\": 7.57, \"hhh\": 9.08}, \"xHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}, \"yCrestFactor\": {\"h\": 5.98, \"l\": 0, \"hh\": 7.48, \"hhh\": 8.98}, \"yHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}, \"zCrestFactor\": {\"h\": 6.3, \"l\": 0, \"hh\": 7.87, \"hhh\": 9.44}, \"zHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}}",
"{\"addr\": \"4\", \"temp\": {\"h\": 68, \"l\": 0, \"hh\": 85, \"hhh\": 102}, \"xRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"yRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"zRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"xVRMS\": {\"h\": 1.86, \"l\": 0, \"hh\": 2.33, \"hhh\": 2.8}, \"yVRMS\": {\"h\": 2.99, \"l\": 0, \"hh\": 3.74, \"hhh\": 4.49}, \"zVRMS\": {\"h\": 1.3, \"l\": 0, \"hh\": 1.62, \"hhh\": 1.94}, \"xKurtosis\": {\"h\": 119.41, \"l\": 0, \"hh\": 149.26, \"hhh\": 179.11}, \"yKurtosis\": {\"h\": 87.02, \"l\": 0, \"hh\": 108.78, \"hhh\": 130.54}, \"zKurtosis\": {\"h\": 90.27, \"l\": 0, \"hh\": 112.84, \"hhh\": 135.41}, \"addressName\": \"Robot底座1\", \"xCrestFactor\": {\"h\": 15.36, \"l\": 0, \"hh\": 19.2, \"hhh\": 23.04}, \"xHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}, \"yCrestFactor\": {\"h\": 14.17, \"l\": 0, \"hh\": 17.71, \"hhh\": 21.25}, \"yHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}, \"zCrestFactor\": {\"h\": 10.1, \"l\": 0, \"hh\": 12.63, \"hhh\": 15.16}, \"zHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}}",
"{\"addr\": \"5\", \"temp\": {\"h\": 68, \"l\": 0, \"hh\": 85, \"hhh\": 102}, \"xRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"yRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"zRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"xVRMS\": {\"h\": 0.96, \"l\": 0, \"hh\": 1.2, \"hhh\": 1.44}, \"yVRMS\": {\"h\": 0.96, \"l\": 0, \"hh\": 1.2, \"hhh\": 1.44}, \"zVRMS\": {\"h\": 1.42, \"l\": 0, \"hh\": 1.78, \"hhh\": 2.14}, \"xKurtosis\": {\"h\": 80.51, \"l\": 0, \"hh\": 100.64, \"hhh\": 120.77}, \"yKurtosis\": {\"h\": 107.61, \"l\": 0, \"hh\": 134.51, \"hhh\": 161.41}, \"zKurtosis\": {\"h\": 116.08, \"l\": 0, \"hh\": 145.1, \"hhh\": 174.12}, \"addressName\": \"Coater底座1\", \"xCrestFactor\": {\"h\": 7.42, \"l\": 0, \"hh\": 9.28, \"hhh\": 11.14}, \"xHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}, \"yCrestFactor\": {\"h\": 7.5, \"l\": 0, \"hh\": 9.38, \"hhh\": 11.26}, \"yHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}, \"zCrestFactor\": {\"h\": 6.8, \"l\": 0, \"hh\": 8.5, \"hhh\": 10.2}, \"zHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}}",
"{\"addr\": \"6\", \"temp\": {\"h\": 68, \"l\": 0, \"hh\": 85, \"hhh\": 102}, \"xRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"yRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"zRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"xVRMS\": {\"h\": 0.96, \"l\": 0, \"hh\": 1.2, \"hhh\": 1.44}, \"yVRMS\": {\"h\": 0.96, \"l\": 0, \"hh\": 1.2, \"hhh\": 1.44}, \"zVRMS\": {\"h\": 1.83, \"l\": 0, \"hh\": 2.29, \"hhh\": 2.75}, \"xKurtosis\": {\"h\": 74.26, \"l\": 0, \"hh\": 92.83, \"hhh\": 111.4}, \"yKurtosis\": {\"h\": 74.49, \"l\": 0, \"hh\": 93.11, \"hhh\": 111.73}, \"zKurtosis\": {\"h\": 91.72, \"l\": 0, \"hh\": 114.65, \"hhh\": 137.58}, \"addressName\": \"Coater底座2\", \"xCrestFactor\": {\"h\": 10.41, \"l\": 0, \"hh\": 13.01, \"hhh\": 15.61}, \"xHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}, \"yCrestFactor\": {\"h\": 10.2, \"l\": 0, \"hh\": 12.75, \"hhh\": 15.3}, \"yHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}, \"zCrestFactor\": {\"h\": 8.35, \"l\": 0, \"hh\": 10.44, \"hhh\": 12.53}, \"zHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}}",
"{\"addr\": \"7\", \"temp\": {\"h\": 68, \"l\": 0, \"hh\": 85, \"hhh\": 102}, \"xRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"yRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"zRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"xVRMS\": {\"h\": 5.29, \"l\": 0, \"hh\": 6.61, \"hhh\": 7.93}, \"yVRMS\": {\"h\": 4.06, \"l\": 0, \"hh\": 5.08, \"hhh\": 6.1}, \"zVRMS\": {\"h\": 1.06, \"l\": 0, \"hh\": 1.33, \"hhh\": 1.6}, \"xKurtosis\": {\"h\": 76.96, \"l\": 0, \"hh\": 96.2, \"hhh\": 115.44}, \"yKurtosis\": {\"h\": 23.99, \"l\": 0, \"hh\": 29.99, \"hhh\": 35.99}, \"zKurtosis\": {\"h\": 25.95, \"l\": 0, \"hh\": 32.44, \"hhh\": 38.93}, \"addressName\": \"传送Gripper 1\", \"xCrestFactor\": {\"h\": 6.8, \"l\": 0, \"hh\": 8.5, \"hhh\": 10.2}, \"xHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}, \"yCrestFactor\": {\"h\": 6.69, \"l\": 0, \"hh\": 8.36, \"hhh\": 10.03}, \"yHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}, \"zCrestFactor\": {\"h\": 6.61, \"l\": 0, \"hh\": 8.26, \"hhh\": 9.91}, \"zHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}}",
"{\"addr\": \"8\", \"temp\": {\"h\": 68, \"l\": 0, \"hh\": 85, \"hhh\": 102}, \"xRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"yRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"zRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"xVRMS\": {\"h\": 2.65, \"l\": 0, \"hh\": 3.31, \"hhh\": 3.97}, \"yVRMS\": {\"h\": 4.17, \"l\": 0, \"hh\": 5.21, \"hhh\": 6.25}, \"zVRMS\": {\"h\": 1.15, \"l\": 0, \"hh\": 1.44, \"hhh\": 1.73}, \"xKurtosis\": {\"h\": 43.5, \"l\": 0, \"hh\": 54.38, \"hhh\": 65.26}, \"yKurtosis\": {\"h\": 180.45, \"l\": 0, \"hh\": 225.56, \"hhh\": 270.67}, \"zKurtosis\": {\"h\": 27.85, \"l\": 0, \"hh\": 34.81, \"hhh\": 41.77}, \"addressName\": \"传送Gripper 2\", \"xCrestFactor\": {\"h\": 8.54, \"l\": 0, \"hh\": 10.68, \"hhh\": 12.82}, \"xHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}, \"yCrestFactor\": {\"h\": 6.96, \"l\": 0, \"hh\": 8.7, \"hhh\": 10.44}, \"yHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}, \"zCrestFactor\": {\"h\": 6.74, \"l\": 0, \"hh\": 8.43, \"hhh\": 10.12}, \"zHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}}",
"{\"addr\": \"9\", \"temp\": {\"h\": 68, \"l\": 0, \"hh\": 85, \"hhh\": 102}, \"xRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"yRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"zRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"xVRMS\": {\"h\": 1.89, \"l\": 0, \"hh\": 2.36, \"hhh\": 2.83}, \"yVRMS\": {\"h\": 0.96, \"l\": 0, \"hh\": 1.2, \"hhh\": 1.44}, \"zVRMS\": {\"h\": 0.96, \"l\": 0, \"hh\": 1.2, \"hhh\": 1.44}, \"xKurtosis\": {\"h\": 55.72, \"l\": 0, \"hh\": 69.65, \"hhh\": 83.58}, \"yKurtosis\": {\"h\": 52.8, \"l\": 0, \"hh\": 66, \"hhh\": 79.2}, \"zKurtosis\": {\"h\": 45.22, \"l\": 0, \"hh\": 56.53, \"hhh\": 67.84}, \"addressName\": \"Lift螺杆1\", \"xCrestFactor\": {\"h\": 6.97, \"l\": 0, \"hh\": 8.71, \"hhh\": 10.45}, \"xHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}, \"yCrestFactor\": {\"h\": 9.7, \"l\": 0, \"hh\": 12.13, \"hhh\": 14.56}, \"yHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}, \"zCrestFactor\": {\"h\": 7.98, \"l\": 0, \"hh\": 9.98, \"hhh\": 11.98}, \"zHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}}",
"{\"addr\": \"10\", \"temp\": {\"h\": 68, \"l\": 0, \"hh\": 85, \"hhh\": 102}, \"xRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"yRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"zRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"xVRMS\": {\"h\": 0.96, \"l\": 0, \"hh\": 1.2, \"hhh\": 1.44}, \"yVRMS\": {\"h\": 1.93, \"l\": 0, \"hh\": 2.41, \"hhh\": 2.89}, \"zVRMS\": {\"h\": 0.96, \"l\": 0, \"hh\": 1.2, \"hhh\": 1.44}, \"xKurtosis\": {\"h\": 58.12, \"l\": 0, \"hh\": 72.65, \"hhh\": 87.18}, \"yKurtosis\": {\"h\": 56.18, \"l\": 0, \"hh\": 70.22, \"hhh\": 84.26}, \"zKurtosis\": {\"h\": 66.44, \"l\": 0, \"hh\": 83.05, \"hhh\": 99.66}, \"addressName\": \"Lift螺杆2\", \"xCrestFactor\": {\"h\": 10.19, \"l\": 0, \"hh\": 12.74, \"hhh\": 15.29}, \"xHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}, \"yCrestFactor\": {\"h\": 7.49, \"l\": 0, \"hh\": 9.36, \"hhh\": 11.23}, \"yHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}, \"zCrestFactor\": {\"h\": 8, \"l\": 0, \"hh\": 10, \"hhh\": 12}, \"zHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}}",
"{\"addr\": \"11\", \"temp\": {\"h\": 68, \"l\": 0, \"hh\": 85, \"hhh\": 102}, \"xRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"yRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"zRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"xVRMS\": {\"h\": 1.11, \"l\": 0, \"hh\": 1.39, \"hhh\": 1.67}, \"yVRMS\": {\"h\": 2.82, \"l\": 0, \"hh\": 3.53, \"hhh\": 4.24}, \"zVRMS\": {\"h\": 3.26, \"l\": 0, \"hh\": 4.07, \"hhh\": 4.88}, \"xKurtosis\": {\"h\": 121.3, \"l\": 0, \"hh\": 151.62, \"hhh\": 181.94}, \"yKurtosis\": {\"h\": 47.34, \"l\": 0, \"hh\": 59.18, \"hhh\": 71.02}, \"zKurtosis\": {\"h\": 139.45, \"l\": 0, \"hh\": 174.31, \"hhh\": 209.17}, \"addressName\": \"Nozzle Gantry\", \"xCrestFactor\": {\"h\": 11.46, \"l\": 0, \"hh\": 14.32, \"hhh\": 17.18}, \"xHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}, \"yCrestFactor\": {\"h\": 8.22, \"l\": 0, \"hh\": 10.27, \"hhh\": 12.32}, \"yHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}, \"zCrestFactor\": {\"h\": 11.5, \"l\": 0, \"hh\": 14.37, \"hhh\": 17.24}, \"zHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}}",
"{\"addr\": \"12\", \"temp\": {\"h\": 68, \"l\": 0, \"hh\": 85, \"hhh\": 102}, \"xRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"yRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"zRMS\": {\"h\": 4000, \"l\": 0, \"hh\": 5000, \"hhh\": 6000}, \"xVRMS\": {\"h\": 3.09, \"l\": 0, \"hh\": 3.86, \"hhh\": 4.63}, \"yVRMS\": {\"h\": 2.25, \"l\": 0, \"hh\": 2.81, \"hhh\": 3.37}, \"zVRMS\": {\"h\": 2.01, \"l\": 0, \"hh\": 2.51, \"hhh\": 3.01}, \"xKurtosis\": {\"h\": 40.22, \"l\": 0, \"hh\": 50.28, \"hhh\": 60.34}, \"yKurtosis\": {\"h\": 45.54, \"l\": 0, \"hh\": 56.92, \"hhh\": 68.3}, \"zKurtosis\": {\"h\": 59.34, \"l\": 0, \"hh\": 74.17, \"hhh\": 89}, \"addressName\": \"Robot底座2\", \"xCrestFactor\": {\"h\": 9.52, \"l\": 0, \"hh\": 11.9, \"hhh\": 14.28}, \"xHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}, \"yCrestFactor\": {\"h\": 8.62, \"l\": 0, \"hh\": 10.77, \"hhh\": 12.92}, \"yHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}, \"zCrestFactor\": {\"h\": 7.5, \"l\": 0, \"hh\": 9.38, \"hhh\": 11.26}, \"zHighFreqRMS\": {\"h\": 1600, \"l\": 0, \"hh\": 2000, \"hhh\": 2400}}"
],
"openThreshold": "{\"oTemp\":30,\"xVar\":0}"
},
"alarmMethodList": [],
"alarmUserList": [],
"alarmUserGroupList": [
{
"userGroupNo": "UGN549510650892447744",
"userGroupName": "默认订阅EI推送组",
"companyName": "上海辉度智能系统有限公司"
}
],
"eiNotificationMethodList": [
{
"alarmMethodCN": "APP提醒",
"alarmMethodEN": "APP Remind"
},
{
"alarmMethodCN": "电子邮件",
"alarmMethodEN": "Email"
}
],
"eiNotificationUserList": [],
"eiNotificationUserGroupList": [],
"eiNotificationConditionList": [
1,
2,
3
],
"abnormalVibrationMethodList": [],
"abnormalVibrationUserList": [],
"abnormalVibrationUserGroupList": [],
"flg": 1,
"learnMode": 1,
"manualOperationStatus": 0,
"realSpeedFlg": 0,
"proLineNo": "PLN702790165572362240",
"workshopNo": "WSN702790165706579968"
}
}
[
{
"generalFeatureType": [
"VRMS"
],
"partFeatureType": [
"Freq1x",
"Freq2x",
"Freq3x"
],
"correlationGeneralFeatureType": []
},
{
"generalFeatureType": [
"VRMS"
],
"partFeatureType": [
"shaftA05xFn",
"shaftA1xFn"
],
"correlationGeneralFeatureType": []
},
{
"generalFeatureType": [
"VRMS"
],
"partFeatureType": [
"shaftA1x",
"shaftA2x",
"shaftA3x"
],
"correlationGeneralFeatureType": []
},
{
"generalFeatureType": [
"VRMS"
],
"partFeatureType": [
"spm1x",
"spm2x",
"spm3x"
],
"correlationGeneralFeatureType": []
},
{
"generalFeatureType": [
"VRMS"
],
"partFeatureType": [
"belt1x",
"belt2x",
"belt3x"
],
"correlationGeneralFeatureType": []
},
{
"generalFeatureType": [
"VRMS"
],
"partFeatureType": [
"femalescrew1xFn",
"femalescrew2xFn",
"femalescrew3xFn"
],
"correlationGeneralFeatureType": []
},
{
"generalFeatureType": [
"VRMS"
],
"partFeatureType": [
"malescrew1xFn",
"malescrew2xFn",
"malescrew3xFn"
],
"correlationGeneralFeatureType": []
},
{
"generalFeatureType": [
"VRMS"
],
"partFeatureType": [
"screw1xFn",
"screw2xFn",
"screw3xFn"
],
"correlationGeneralFeatureType": []
},
{
"generalFeatureType": [
"Kurtosis"
],
"partFeatureType": [
"FreqBBn",
"FreqBIn",
"FreqBOn",
"FreqBFn"
],
"correlationGeneralFeatureType": [
"CrestFactor"
]
},
{
"generalFeatureType": [
"Kurtosis"
],
"partFeatureType": [
"seB"
],
"correlationGeneralFeatureType": [
"CrestFactor"
]
},
{
"generalFeatureType": [
"CrestFactor"
],
"partFeatureType": [
"seB"
],
"correlationGeneralFeatureType": [
"Kurtosis"
]
},
{
"generalFeatureType": [
"HighFreqRMS"
],
"partFeatureType": [
"FreqBBn",
"FreqBIn",
"FreqBOn",
"FreqBFn"
],
"correlationGeneralFeatureType": [
"Kurtosis"
]
},
{
"generalFeatureType": [
"HighFreqRMS"
],
"partFeatureType": [
"seB"
],
"correlationGeneralFeatureType": [
"Kurtosis"
]
},
{
"generalFeatureType": [
"HighFreqRMS"
],
"partFeatureType": [
"HighFreqRMS"
],
"correlationGeneralFeatureType": [
"Kurtosis"
]
},
{
"generalFeatureType": [
"HighFreqRMS"
],
"partFeatureType": [
"Freq1xGMFn",
"Freq2xGMFn",
"Freq3xGMFn"
],
"correlationGeneralFeatureType": [
"Kurtosis"
]
},
{
"generalFeatureType": [
"HighFreqRMS"
],
"partFeatureType": [
"seG"
],
"correlationGeneralFeatureType": [
"Kurtosis"
]
},
{
"generalFeatureType": [
"HighFreqRMS"
],
"partFeatureType": [
"spm1x",
"spm2x",
"spm3x"
],
"correlationGeneralFeatureType": [
"Kurtosis"
]
},
{
"generalFeatureType": [
"gSE"
],
"partFeatureType": [
"FreqBBn",
"FreqBIn",
"FreqBOn",
"FreqBFn"
],
"correlationGeneralFeatureType": [
"Kurtosis"
]
},
{
"generalFeatureType": [
"gSE"
],
"partFeatureType": [
"seB"
],
"correlationGeneralFeatureType": [
"Kurtosis"
]
}
]
\ No newline at end of file
[
{
"errCode": 2001,
"errName": "齿形误差",
"errCause": "(1) 由生产切割工艺造成的\n(2) 内部轴的轻微弯曲产生\n",
"errSuggestion": "(1)供应商联系更换齿轮箱\n(2)重新安装转动轴\n",
"errHint": "频谱产生以啮合频率及其高次谐波为载波频率,\n齿轮所在轴转频及其倍频为调制频率的啮合频率调制现象\n谱图上在啮合频率及其倍频附近产生幅值小且稀疏的边频带;解调谱上出现转频阶数较少,一般以一阶为主。\n而当齿形误差严重时,由于激振能量较大,产生以齿轮各阶固有频率为载波频率,齿轮所在轴转频及其倍频为调制频率的齿轮共振频率调制现象。"
},
{
"errCode": 2002,
"errName": "齿轮均匀磨损",
"errCause": "(1) 齿轮使用时间较长,产生的磨损。\n(2) 长期高于设计负载运行",
"errSuggestion": "(1)更换或者修复齿轮齿形\n(2)更换齿轮箱",
"errHint": "\n无冲击振动信号产生\n啮合频率及其各阶谐波幅值明显增大"
},
{
"errCode": 2003,
"errName": "箱体共振",
"errCause": "(1) 外部的振动激励导致箱体产生共振,如防尘罩松动\n(2) 内部产生严重的断齿带来的冲击\n(3) 内部的其他激励产生的较强撞击",
"errSuggestion": "(1)排查外部激励\n(2)加强基座安装,变换固有频率点",
"errHint": "箱体共振时,在谱图上出现了箱体的固有频率成份,\n一般情况下共振能量很大,而其它频率成份则很小或没有出现。"
},
{
"errCode": 2004,
"errName": "断齿",
"errCause": "(1) 快速启停导致断齿\n(2) 高负载运行",
"errSuggestion": "(1)更换齿轮",
"errHint": "幅值很大的冲击型振动,频率等于有断齿轴的转频\n而频域上在啮合频率及其高次谐波附近出现间隔为断齿轴转频的边频带;边频带一般数量多、幅值较大、分布较宽。解调谱中常出现转频及其高次谐波,甚至出现 10 阶以上。同时由于瞬态冲击能量大,时常激励起固有频率,产生固有频率调制现象。"
},
{
"errCode": 2005,
"errName": "轴轻度弯曲",
"errCause": "(1) 高负载运行",
"errSuggestion": "(1)供应商联系更换齿轮箱\n(2)重新安装转动轴",
"errHint": "以啮合频率及其倍频为载波频率,以齿轮所在轴转频为调制频率的啮合频率调制现象,如果弯曲轴上有多对齿轮啮合,则会出现多对啮合频率调制。但一般谱图上边带数量少而稀,它与齿形误差虽有类似的边带,但其轴向振动能量明显加大。"
},
{
"errCode": 2006,
"errName": "轴严重弯曲",
"errCause": "(1) 高负载运行\n(2) 安装精度不够导致轴弯曲\n",
"errSuggestion": "(1)供应商联系更换齿轮箱\n(2)更换弯曲的轴",
"errHint": "时域有明显的冲击振动,以一定的时间间隔出现,冲击持续了整个周期的1/3 以上\n当冲击能量很大时激励起箱体的固有频率,振幅很大"
},
{
"errCode": 2007,
"errName": "轴有较严重的不平衡",
"errCause": "(1) 高负载运行\n(2) 安装精度不够导致轴弯曲",
"errSuggestion": "(1)供应商联系更换齿轮箱\n(2)更换弯曲的轴",
"errHint": "在齿轮传动中将导致齿形误差,形成以啮合频率及其倍频为载波频率,\n以齿轮所在轴转频为调制频率的啮合频率调制现象,但一般谱图上边带数量少而稀。但在谱图中其有故障轴的转频成分明显加大。"
},
{
"errCode": 2008,
"errName": "轴承疲劳剥落和点蚀",
"errCause": "(1) 高负载运行\n(2) 长时间不运行,产生压痕\n(3) 润滑不良导致轴承磨损",
"errSuggestion": "(1)增加润换,更换润红油\n(2)更换轴承\n(3)避免长时间停机",
"errHint": "滚动轴承内外环及滚动体疲劳剥落和点蚀后,在其频谱中高频区外环固有频率附近出现明显的调制峰群,产生以外环固有频率为载波频率,以轴承通过频率为调制频率的固有频率调制现象。由于滚动轴承产生的振动在传动箱中与齿轮振动相比能量较小,解调谱中调制频率幅值较小,一般只出现1 阶。"
},
{
"errCode": 1001,
"errName": "电机不平衡",
"errCause": "转子质量问题造成不平衡\n装配误差造成不平衡\n",
"errSuggestion": "轴不平衡,建议在最近一次停机维护时做动平衡校准。\n检查装配误差,尤其是轴线是否对其",
"errHint": "转频和高频谐波组成,基频最为明显。\n转速变化,基频升高"
},
{
"errCode": 1002,
"errName": "电机不对中",
"errCause": "安装轴线不重合\n联轴器有角度不对中现象",
"errSuggestion": "检查新安装的仪器是否因地基沉降而导致对齐变化,\n利用对中仪器进行校准",
"errHint": "旋转频率的二倍频升高,且高于一倍频"
},
{
"errCode": 1003,
"errName": "电机轴松动",
"errCause": "颈轴承与外壳不紧密(存在于大型电机)\n基座松动或者不紧密",
"errSuggestion": "检查轴和轴承的安装配合,检查游隙。\n检查轴承与外壳的精密程度",
"errHint": "旋转的三个倍频,\n工作温度没有明显上升"
},
{
"errCode": 1004,
"errName": "电机定子损伤",
"errCause": "电机外部收到冲击或者挤压",
"errSuggestion": "更换电机",
"errHint": "None"
},
{
"errCode": 1005,
"errName": "转子损伤",
"errCause": "转子热弯曲\n磁场不平衡",
"errSuggestion": "重新维修,加固转子",
"errHint": "转频非常高"
},
{
"errCode": 1006,
"errName": "转子断裂",
"errCause": "过疲劳\n负载过大",
"errSuggestion": "更换转子",
"errHint": "转频非常高,减速的时候会有明显的fn/2"
},
{
"errCode": 1007,
"errName": "气隙故障",
"errCause": "转子热弯曲\n异性定子\n磁场不平衡",
"errSuggestion": "检查电机外壳是否有破损或者变形\n检查三相电源电压波动是否稳定\n更换电机",
"errHint": "None"
},
{
"errCode": 1008,
"errName": "基座松动",
"errCause": "地面沉降\n地脚螺丝松动",
"errSuggestion": "检查地脚螺丝安装\n加固基座\n检查是否有地面沉降",
"errHint": "转频和高频谐波为主"
},
{
"errCode": 1009,
"errName": "滚动轴承故障",
"errCause": "(1) 高负载运行\n(2) 长时间不运行,产生压痕\n(3) 润滑不良导致轴承磨损",
"errSuggestion": "(1)增加润换,更换润滑油\n(2)更换轴承\n(3)避免长时间停机",
"errHint": "滚动轴承内外环及滚动体疲劳剥落和点蚀后,\n在其频谱中高频区外环固有频率附近出现明显的调制峰群,产生以外环固有频率为载波频率,以轴承通过频率为调制频率的固有频率调制现象。由于滚动轴承产生的振动在传动箱中与齿轮振动相比能量较小,解调谱中调制频率幅值较小,一般只出现1 阶。"
},
{
"errCode": 3001,
"errName": "叶片不平衡",
"errCause": "叶片磨损\n叶片安装偏差\n围在设计工况下运行\n管线设计不合理",
"errSuggestion": "检查叶片是否有异物或者有叶片有腐蚀,\n如果振动大小和开度有关,多因为管线设计不合理",
"errHint": "叶轮的通过频率高"
},
{
"errCode": 4002,
"errName": "皮带轮偏心",
"errCause": "皮带轮本身质量问题导致偏心,\n皮带张力过大导致偏心严重",
"errSuggestion": "适当把皮带的张力降低些",
"errHint": "有明显方向性,且转频1x为主导"
},
{
"errCode": 4003,
"errName": "皮带/皮带轮不对中",
"errCause": "皮带轮和电机安装角度不对中",
"errSuggestion": "角度校准",
"errHint": "轴向振动明显,转频1x为主导,\n电机侧有负载的转动频率明显,\n负载侧有明显的电机转动频率"
},
{
"errCode": 5001,
"errName": "阴阳转子啮合不良",
"errCause": "轴承游隙过大\n转子润滑不良\n气动压力波动\n转子平行度不良",
"errSuggestion": "改善转子润滑\n检查转子平行度不良",
"errHint": "通过频率增加"
}
]
\ No newline at end of file
{"id": 10, "workTime": 9}
\ No newline at end of file
[{
"mqtt":{
"broker":"www.witium.com.cn",
"port": 12883,
"user_name": "witcd",
"password": "Witium37774020"
},
"rawInterval": 300,
"featureInterval": 300,
"storeInterval": 300,
"Topic":"WT",
"Type":"WTG6XXF",
"SN": "24010543",
"reducerNo": "RN747624499620753408",
"reducerName":"自吸泵",
"version" :"1.00",
"grippers" : false,
"trigger" : "falling",
"grippers_io": "467",
"grippers_cnt": 3,
"timeout": 60,
"db_status": false,
"phy_socket_4g":true,
"phy_socket_eth":false,
"sensor": [
{
"comNum": "/dev/ttyS2",
"addr": 1,
"mode": 0,
"wakeup": 495,
"SN" : 22122023
},
{
"comNum": "/dev/ttyS3",
"addr": 2,
"mode": 0,
"wakeup": 496,
"SN" : 22122023
},
{
"comNum": "/dev/ttyS4",
"addr": 3,
"mode": 0,
"wakeup": 497,
"SN" : 22122023
},
{
"comNum": "/dev/ttyS9",
"addr": 4,
"mode": 0,
"wakeup": 498,
"SN" : 22122023
},
{
"comNum": "/dev/ttyS7",
"addr": 5,
"mode": 0,
"wakeup": 499,
"SN" : 22122023
},
{
"comNum": "/dev/ttyS5",
"addr": 6,
"mode": 0,
"wakeup": 500,
"SN" : 22122023
}
],
"workSendData": {
"enable": true,
"WorkTh": 1
},
"mqttEnable": true,
"remoteEnable": true,
"rawDataStoreFlag":false
}
]
#!/bin/bash
local env=$1
local zip_file="frpc_0.59.0_linux_arm64.zip"
local extract_dir="${zip_file%.zip}"
echo "frpc驱动程序初始化.... "
if [ ! -d "$env" ]; then
echo "错误: 指定的环境目录 '$env' 不存在。"
return 1
fi
local zip_path="${env}/${zip_file}"
if [ ! -f "$zip_path" ]; then
echo "错误: ZIP文件 '$zip_path' 不存在。"
return 1
fi
local extract_path="${env}/${extract_dir}"
if [ ! -d "$extract_path" ]; then
echo "解压缩frpc配置文件..."
unzip "$zip_path" -d "$env"
fi
chmod 777 "${extract_path}/frpc"
sudo cp "${extract_path}/frpc" /usr/bin/
chmod 777 "${extract_path}/mqtt_frpc"
sudo cp "${extract_path}/mqtt_frpc" /usr/bin/
sudo mkdir /etc/frp
sudo cp "${extract_path}/frpc.toml" /etc/frp/
sudo cp "${extract_path}/config.json" /etc/frp/
sudo cp "${extract_path}/mqtt_frpc.service" "/usr/lib/systemd/system/"
# sudo systemctl enable mqtt_frpc
rm -rf "$extract_path"
echo "设置完成."
\ No newline at end of file
{"id": 17, "workTime": 41}
\ No newline at end of file
#!/bin/bash
sudo cp ./resources1/sources.list /etc/apt/sources.list
sudo apt update
sudo apt install make
#!/bin/bash
local env=$1
local zip_file="quectel-CM-binary-RK3568.zip"
local bin_file="quectel-CM"
local service_file="quectel-autodial.service"
local extract_dir="${zip_file%.zip}"
echo "4G驱动程序初始化.... "
if [ ! -d "$env" ]; then
echo "错误: 指定的环境目录 '$env' 不存在。"
return 1
fi
local zip_path="${env}/${zip_file}"
if [ ! -f "$zip_path" ]; then
echo "错误: ZIP文件 '$zip_path' 不存在。"
return 1
fi
local extract_path="${env}/${extract_dir}"
if [ ! -d "$extract_path" ]; then
echo "解压缩4G配置文件..."
unzip "$zip_path" -d "$env"
fi
local bin_path="${extract_path}/${bin_file}"
if [ ! -f "$bin_path" ]; then
echo "错误:二进制文件 '$bin_path' 不存在。"
return 1
fi
local service_path="${extract_path}/${service_file}"
if [ ! -f "$service_path" ]; then
echo "错误:service 文件 '$service_path' 不存在。"
return 1
fi
chmod +x "$bin_path"
sudo cp "$bin_path" /usr/sbin/
sudo cp "$service_path" /lib/systemd/system/
# sudo systemctl enable "$service_file"
# sudo systemctl start "$service_file"
rm -rf "$extract_path"
echo "设置完成."
\ No newline at end of file
#!/bin/bash
frpc_json=/etc/frp/config.json
wt_json=/home/linaro/wtdiagnose/file/usbconfig.json
current_json=/home/linaro/wtcurrent/file/config.json
serial_num=$(cat /proc/serialnum)
extracted_num=$(echo "$serial_num" | cut -d '-' -f 2)
jq --arg sn "$extracted_num" '.SN = $sn' ${frpc_json} > /tmp/temp.json && sudo mv /tmp/temp.json ${frpc_json}
jq --arg sn "$extracted_num" '[.[] | .SN = $sn ]' ${wt_json} > temp.json && mv temp.json ${wt_json}
jq --arg sn "$extracted_num" '.sn = $sn' ${current_json} > temp.json && mv temp.json ${current_json}
\ No newline at end of file
[{
"mqtt":{
"broker":"116.62.127.242",
"port": 1883,
"broker":"www.witium.com.cn",
"port": 12883,
"user_name": "witcd",
"password": "Witium37774020"
},
......@@ -10,7 +10,7 @@
"storeInterval": 300,
"Topic":"WT",
"Type":"WTG6XXF",
"SN": "24010534",
"SN": "24010543",
"reducerNo": "RN747624499620753408",
"reducerName":"自吸泵",
"version" :"1.00",
......
{
"mqtt_info": {
"broker": "222.71.96.91",
"port": 12883,
"user": "witcd",
"password": "Witium37774020"
},
"gw_type": "WTG936F",
"sn": "24010536",
"period": 30,
"iic_opdata_addr": [
79
],
"opdata_key": [
"a"
],
"iic_shift_addr": [
],
"sleep_ms": 5,
"sample_num": 512,
"topic_id": 134
}
\ No newline at end of file
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment