| Literature DB >> 30658471 |
Yufeng Fan1, Xiaodong Zhu2, Hulin Sui3, Haotai Sun4, Zhongming Wang5.
Abstract
In recent years, fire accidents in petrochemical plant areas and dangerous goods storage ports in China have shown a trend of frequent occurrence. Toxic and harmful gases are diffused in the scenes of these accidents, which causes great difficulties for fire fighting and rescue operations of fire fighting forces, and consequently, casualties of firefighters often occur. In order to ensure the safety of firefighters in such places, this paper designs a monitoring system of toxic and harmful gases specially used in fire fighting and rescue sites of fire forces, and establishes the transmission network, monitoring terminal and data processing software of the monitoring system of toxic and harmful gases, establishing the danger model of the monitoring area of toxic and harmful gas-monitoring terminal, and the danger model of fire fighters' working area, fusing the field toxic and harmful gas data, terminal positioning data, and field environmental data, designing the data structure of the input data set and the network structure of the RNN cyclic neural network model, and realizing the dynamic early warning of toxic and harmful gases on site.Entities:
Keywords: fire command and dispatch; machine learning; toxic and harmful gas monitoring; weight model
Year: 2019 PMID: 30658471 PMCID: PMC6358806 DOI: 10.3390/s19020369
Source DB: PubMed Journal: Sensors (Basel) ISSN: 1424-8220 Impact factor: 3.576
Figure 1Schematic diagram of toxic and harmful gas monitoring system.
Figure 2The Terminal Schematic.
Figure 3Data transmission processing flow chart.
Figure 4RNN (recurrent neural network) Network Architecture.
Wind direction one-hot coding table.
| Wind Direction | One-Hot Coding |
|---|---|
| East wind | [0, 0, 0, 0, 0, 0, 0, 1] |
| South wind | [0, 0, 0, 0, 0, 0, 1, 0] |
| West wind | [0, 0, 0, 0, 0, 1, 0, 0] |
| North wind | [0, 0, 0, 0, 1, 0, 0, 0] |
| Southeast wind | [0, 0, 0, 1, 0, 0, 0, 0] |
| Northeast wind | [0, 0, 1, 0, 0, 0, 0, 0] |
| Southwest wind | [0, 1, 0, 0, 0, 0, 0, 0] |
| Northwest wind | [1, 0, 0, 0, 0, 0, 0, 0] |
Model output weight one-hot code table.
| Model Output | One-Hot Code |
|---|---|
| ERPG-0 | [0, 0, 0, 1] |
| ERPG-1 | [0, 0, 1, 0] |
| ERPG-2 | [0, 1, 0, 0] |
| ERPG-3 | [1, 0, 0, 0] |
Model training data set data structure table.
| Model Input X | Model Output Y | ||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|
| Time Series | Temperature | Humidity | Pressure | Wind Direction | Wind Power | Concentration | ERPG | ||||
| NO2 | H2S | SO2 | CO | NH3 | |||||||
|
| [p] | [p] | [p] | [p] | [p] | [p] | [p] | [p] | [p] | [p] | [p] |
|
| [p] | [p] | [p] | [p] | [p] | [p] | [p] | [p] | [p] | [p] | [p] |
|
| [p] | [p] | [p] | [p] | [p] | [p] | [p] | [p] | [p] | [p] | [p] |
| … | … | … | … | … | … | … | … | … | … | … | … |
|
| [p] | [p] | [p] | [p] | [p] | [p] | [p] | [p] | [p] | [p] | [p] |
Figure 5RNN model structure.