Saturday, October 10, 2015

plasma temperature measurement

Based on the fluorescence emission spectrum line intensity is proportional to the number of excited particles principle, by measuring the emission of different excited state level of the relative intensity of fluorescence spectrum of Ne gas pulse corona discharge plasma electron temperature with the average peak voltage, the sample pressure change and the effective time of the electron temperature behavior was studied. The results showed that the average electron temperature with the discharge peak voltage, the sample showed a nearly linear pressure trend; and effective electron temperature versus time before the pulse corona discharge current changes.
With the rapid economic and industrial development, environmental pollution is getting worse. Pulsed corona discharge plasma activation of its low energy consumption, high efficiency, wide application, etc. ll.2】, in air pollution control (mainly the desulfurization denitrification) aspects of attention has been widespread. at home and abroad of scholars in this field is more concerned about the end result, namely, the removal efficiency of pollutants 13-6], but excited by pulse corona discharge for gas discharge electron temperature, excitation temperature and electron density of the Vibrational study parameters such as little, and these parameters for the study of pulse corona discharge mechanism and to further improve the pollutant removal efficiency are crucial. Pulsed Corona Discharge Plasma as a one of the parameters of the electron temperature (Wu), to reflect the movement of electrons in gas discharge .
The electron temperature of Ne plasma is obtained in negative pulse corona discharge by measuring the relative fluorescence emission intensity of different energy levels. The change tendency of the electron temperature of Ne plasma with discharge voltage, sample pressure and time is studied. The results indicate an increase of the average electron temperature during the pulse corona discharge when increasing the discharge voltage or decreasing the sample pressure. The available electron temperature and discharge current do not change synchronously with time.

tool room and training centre

UG mold design part of the (full three-dimensional design)
1. UG installation and customization.
2. Layers of knowledge and color management.
3. Curve and editing.
4. Sketch design.
5. Solid modeling and editing, direct modeling, complex modeling.
6. Create complex surface and surface editing.
7. Top-down assembly design and management of reference set.
8. Parametric design of the assembly and editing (WAVE LINK, clone assembly, expression management, etc.).
9. Full 3-D inspection (interference and clearance CHECK CHECK etc. Draft analysis and upside down faces (UNDERCUT) of the minimum angle of R, etc.).
10. Inside and outside the slider design.
11. Drafting 2-dimensional graph drawing and die assembly, explosive open map.
12. Reverse Engineering (point cloud to surface, etc.).
13. CAD2-dimensional design.
14. Print out the map.
15. Mold design (three plate cold runner mold, the two plate cold runner mold, hot runner molds and semi-cold semi-hot runner (SEIMI-HOT) die; hot runner plate design, hot runner nozzle design, etc.).
16. IGS, STEP, PARASOLID broken surface repair, broken body repair and so on.
17. Product analysis and review (for example: the design of the customer's products help mold the proposed changes, etc.). 18. Core (CORE) and cavity (CAVITY) design (commonly used parting ways, etc.).
19. Mold design.
20. MOLDWIZAR mold design (sub-mode, cooling, thimble, GATE, transfer standard parts and standard mold, etc.).
21. Electrode design (discounted Copper Company).
22. How to solve the sub-module separated from methods (hand-construct the parting surface method, playing solid patch method, etc.) 23. Explain the 2D structure mold assembly diagram.
24. UG, CAD mold design and processing technology of basic theoretical knowledge.
25. UG ranking and two-dimensional CAD three-dimensional mold qualifying.
26. Die qualifying process and methods.
27. Die structural analysis and case explaining. 

Ground-breaking work safety regulations depot

The first ground-breaking work to ensure that the oil depot construction safety regulations are formulated.
These rules shall apply to oil tanks on the ground excavation, boring, drilling, piling, blasting, and other ground-breaking operations.
Article
Construction unit according to work tasks, tests, and construction requirements of the situation and formulate the construction plan, the implementation of construction safety measures, confirmed by the relevant sign, reported the company authorities for approval. Responsibility of the construction site and database company, responsible person to sign an opinion station. Ground-breaking work permit valid for up to operational areas in the production of more than 3 days outside world less than a week.
Article
Ground-breaking work on-site construction units should be clearly responsible for the safety of people, on the overall responsibility for the safety of the construction process. Key position in the tank area and within the construction, someone should be set for construction safety oversight.
Article
Break ground before the construction unit should be implemented one by one company audit opinion and relevant safety measures, and safety education for all operations and safety personnel in technical tests, before construction. Ground-breaking work involved in electricity, telecommunications, water supply and drainage lines and underground pipelines and other underground facilities, the construction unit to be set up security guardian. Security guardian security measures should be implemented one by one, the confirmation only after the operation to inform the operators and the process of strengthening the inspection and supervision work

Serial Port synchronous and asynchronous data reading

Serial Port synchronous and asynchronous data reading

{
/ / Instantiate the serial object (default: COMM1, 9600, e, 8,1)
SerialPort serialPort1 = new SerialPort ();
/ / Change the parameters
serialPort1.PortName = "COM1";
serialPort1.BaudRate = 19200;
serialPort1.Parity = Parity.Odd;
serialPort1.StopBits = StopBits.Two;
/ / The above steps can be called when the instance of the SerialPort class, overloaded constructors
/ / SerialPort serialPort = new SerialPort ("COM1", 19200, Parity.Odd, StopBits.Two);
/ / Open the serial port (open serial port can not be changed after the name, baud rate and other parameters, modify the parameters to change the serial port is closed)
serialPort1.Open ();
/ / Send data
SendStringData (serialPort1);
/ / Form can also be used to send data byte
/ / SendBytesData (serialPort1);
/ / Open the thread to receive data
ReceiveData (serialPort1);
}
/ / Send string data
private void SendStringData (SerialPort serialPort)
{
serialPort.Write (txtSend.Text);
}
/ / /

/ / / Open the thread to receive data
/ / /
private void ReceiveData (SerialPort serialPort)
{
/ / Synchronous blocking receive data thread
Thread threadReceive = new Thread (new ParameterizedThreadStart (SynReceiveData));
threadReceive.Start (serialPort);
/ / Asynchronous receive data thread can also be
/ / Thread threadReceiveSub = new Thread (new ParameterizedThreadStart (AsyReceiveData));
/ / ThreadReceiveSub.Start (serialPort);
}
/ / Send binary data
private void SendBytesData (SerialPort serialPort)
{
byte   bytesSend = System.Text.Encoding.Default.GetBytes (txtSend.Text);
serialPort.Write (bytesSend, 0, bytesSend.Length);
}
/ / Synchronous blocking read
private void SynReceiveData (object serialPortobj)
{
SerialPort serialPort = (SerialPort) serialPortobj;
System.Threading.Thread.Sleep (0);
serialPort.ReadTimeout = 1000;
try
{
/ / Block to read data or time-out (here for 2 seconds)
byte firstByte = Convert.ToByte (serialPort.ReadByte ());
int bytesRead = serialPort.BytesToRead;
byte   bytesData = new byte [bytesRead 1];
bytesData [0] = firstByte;
for (int i = 1; i <= bytesRead; i)
bytesData [i] = Convert.ToByte (serialPort.ReadByte ());
txtReceive.Text = System.Text.Encoding.Default.GetString (bytesData);
}
catch (Exception e)
{
MessageBox.Show (e.Message);
/ / Handle timeout errors
}
serialPort.Close ();
}
/ / Asynchronous read
private void AsyReceiveData (object serialPortobj)
{
SerialPort serialPort = (SerialPort) serialPortobj;
System.Threading.Thread.Sleep (500);
try
{
txtReceive.Text = serialPort.ReadExisting ();
}
catch (Exception e)
{
MessageBox.Show (e.Message);
/ / Handle the error
}
serialPort.Close ();
}
}
static class Program
{
/ / /

/ / / Application main entry point.
/ / /
[STAThread]
static void Main ()
{
Application.EnableVisualStyles ();
Application.SetCompatibleTextRenderingDefault (false);
Application.Run (new frmTESTSerialPort ());
}
}

synchronous and asynchronous data
Path

{
/ / Instantiate the serial object (default: COMM1, 9600, e, 8,1)
SerialPort serialPort1 = new SerialPort ();
/ / Change the parameters
serialPort1.PortName = "COM1";
serialPort1.BaudRate = 19200;
serialPort1.Parity = Parity.Odd;
serialPort1.StopBits = StopBits.Two;
/ / The above steps can be called when the instance of the SerialPort class, overloaded constructors
/ / SerialPort serialPort = new SerialPort ("COM1", 19200, Parity.Odd, StopBits.Two);
/ / Open the serial port (open serial port can not be changed after the name, baud rate and other parameters, modify the parameters to change the serial port is closed)
serialPort1.Open ();
/ / Send data
SendStringData (serialPort1);
/ / Form can also be used to send data byte
/ / SendBytesData (serialPort1);
/ / Open the thread to receive data
ReceiveData (serialPort1);
}
/ / Send string data
private void SendStringData (SerialPort serialPort)
{
serialPort.Write (txtSend.Text);
}
/ / /

/ / / Open the thread to receive data
/ / /
private void ReceiveData (SerialPort serialPort)
{
/ / Synchronous blocking receive data thread
Thread threadReceive = new Thread (new ParameterizedThreadStart (SynReceiveData));
threadReceive.Start (serialPort);
/ / Asynchronous receive data thread can also be
/ / Thread threadReceiveSub = new Thread (new ParameterizedThreadStart (AsyReceiveData));
/ / ThreadReceiveSub.Start (serialPort);
}
/ / Send binary data
private void SendBytesData (SerialPort serialPort)
{
byte   bytesSend = System.Text.Encoding.Default.GetBytes (txtSend.Text);
serialPort.Write (bytesSend, 0, bytesSend.Length);
}
/ / Synchronous blocking read
private void SynReceiveData (object serialPortobj)
{
SerialPort serialPort = (SerialPort) serialPortobj;
System.Threading.Thread.Sleep (0);
serialPort.ReadTimeout = 1000;
try
{
/ / Block to read data or time-out (here for 2 seconds)
byte firstByte = Convert.ToByte (serialPort.ReadByte ());
int bytesRead = serialPort.BytesToRead;
byte   bytesData = new byte [bytesRead 1];
bytesData [0] = firstByte;
for (int i = 1; i <= bytesRead; i)
bytesData [i] = Convert.ToByte (serialPort.ReadByte ());
txtReceive.Text = System.Text.Encoding.Default.GetString (bytesData);
}
catch (Exception e)
{
MessageBox.Show (e.Message);
/ / Handle timeout errors
}
serialPort.Close ();
}
/ / Asynchronous read
private void AsyReceiveData (object serialPortobj)
{
SerialPort serialPort = (SerialPort) serialPortobj;
System.Threading.Thread.Sleep (500);
try
{
txtReceive.Text = serialPort.ReadExisting ();
}
catch (Exception e)
{
MessageBox.Show (e.Message);
/ / Handle the error
}
serialPort.Close ();
}
}
static class Program
{
/ / /

/ / / Application main entry point.
/ / /
[STAThread]
static void Main ()
{
Application.EnableVisualStyles ();
Application.SetCompatibleTextRenderingDefault (false);
Application.Run (new frmTESTSerialPort ());
}
}
}

chhiar duh suh, webbot bum nan ka tih mai mai

Time and the Earth by celestial coordination of space-time resonance spiral to achieve and complete body of knowledge spiral phase kernel carcass laugh, to use knowledge of the universe space-time emission of light spin energy group, is to build a knowledge model of the human body map of the energy exploitation of cosmic time to complete the human body energy absorption into the disc space, knowledge of life caused by spiral revolutionary scientific experiment in human evolution at all. Therefore, building model pyramid system of the Establishment, must be a quantitative change on the human ability to form a qualitative change from the Buddha-body of the vacuum into a big discussion is closed.
In fact, the unity of the universe, is necessarily a physical and chemical luminescence helix between the true unity. That is closed in a vacuum field of quantum mechanics can be unified on the theory of relativity. This is a theory of human subjects in view of quantum theory at the micro and macro movement of celestial objects to achieve a unified theory. That all the spin of the vacuum material objects alone constitute the main set closed.
Space-based physics, celestial light of the knowledge spiral pattern of the large ones in the channel re-hui in the body to produce substances in the body of the energy of the main set. That the generation of stars is the energy field in the material universe time as shown in the formation of the inevitable result of the vacuum is closed. Vacuum closed closed produces the material body of the vacuum between the stars and other substances the body strong tradition, which constitutes the body of different stars and other material relative to Ren Jian stone that closed the vacuum of the vacuum closure of nuclear material to form the body weight groups of nuclear spiral gravity stars closed, thus forming the universe space-time structure of matter in clumps of varying sizes. Mass structure of these substances produce further movement in space and time under the situation of the collision combination of state of current week, which will form a larger mass of a combination of levels. This time the Spiral in the collision, AV materialized collision structural system, structural system to quantify the TV, the spiral phase method as-kun, is bound to form a structure such as a tornado-shaped group of stars with the energy field - such as the Milky Way's spiral structure chronotope cubic shape. As shown, the Bank of nuclear generation, is necessarily a vector of the light of all the spiral volume materialized.
Tianyi twist, the body of the universe space-time volume and opening up the spiral movement - that is the root of the Milky Way campaign streamer contains common sense, necessity and structure of celestial bodies can be materialized space between sports stars and other material related to group structure. Spiral galaxy field by the space-based second row of empty cloth push rotary energy flow - the twelve constellations of space-time field force of energy dominate.
Space-based movement, that Xingyu second field energy movement. Or pushing the twelve constellations of field rotation movement. Daheng constellation can also be said to exercise - that is the Big Dipper light exercise. Sun times a week for sports stars around the large generation of human civilization root group. During the 129,600 year cycle. Among them, a seasonal calendar as usual every change of 10,800. Into a seasonal, but also with a solar term cycle, the 5400 changes in the solar term weeks streams. The age of the solar cycle time and space, followed by comparison with the Earth reference flow changes weekly round solar terms, can be described as a fan is to expand the level of the talk. That the second set, the Chinese solar terms week compass stream's change. Compass three changes in China, Heaven, Earth, three sets, the earth, the sun, the galaxy three cycles of natural change. Therefore, an auspicious beginning, the three settled when the orderly exploitation of the human culture. Specific solar term is to make inference, see, "Huang ji jing shi" Shao Yong was.
Space and time in human history, calendar 5400 delivery of a major change in solar terms, the same as that of the Earth round flow changes in solar terms week delivery. Only when the solar term delivery, the earth's "Great Flood" and the like natural disasters, changes of the weather than we usually larger Bale. Such as "Da Yu" during the scene. Earth quake, and the Earth within the structure of knowledge related to changes in the vacuum closure. The natural structure of the Earth system, the formation of veins, and the earth closed body of the vacuum within the vacuum of nuclear fusion closed relationship between the relevant energy release. Closed closed vacuum vacuum core, is a structural system of matter the energy of the wave vector trace the formation of large red bound to the origin of the energy of stars. Therefore, the basic principles of flying saucer, is necessarily a natural knowledge structure that materialized - screw vacuum closure to meet changes in the body.

Friday, August 21, 2015

SMPS minimal loading

Tunlaia Consumer Electronic Appliance zawng zawng deuhthaw hian efficiency factor avangin Switched Mode Power Supply (SMPS) a hmang ta deuh vek a. Low Frequency Iron Cored Transformer la hmang hi chu a tam tawhlo khawp mai. 
Tichuan heng SMPS te hi operating frequency sang tak tak an nih hlawm avang leh load san dan feedback leh (closed-loop) hmanga duty cycle ti danglam emaw frequency skipping emaw hmanga a power pekchhuah zat insiam rem chawp zel thei an ni deuh vek. Kan khawl tamtak ah minimal load (dummy load) vuah sa design puitling tak tak awm mahse thenkhat design tellohna hi a awm ve leh zauh thin. Chuvangin Load awmlo chuan tihnun loh mai a him ber. Test nan tihnun a ngai anih chuan resistor satliah watt sang deuh hlek a hman theih.

LCD backlight phuahchawp

Electronics thil chhia, bawlhhlawh bawma paih tur hmang tangkai leh theihna hrim hrim chu k support. Chuvangin hmang tangkai in awm tak mialin. LCD,TFT,OLED.... siamtu te hian CFL emo LED emaw backlight atan an hmang deuh vek a. TV/Monitor chhiatna tam ber hi backlight system bawr diklo anih thin avangin i backlight circuit a function tawhlo anih chuan inchhunga CFL bulb chhia/keh tawh, a driver circuit la tha vek si hi backlight driver atan a hman theih a. Mahse brightness control theih tawh loh ang. Original PCB in a tih en zawh tawh loh pawh CFL driver hi chuan a ti eng thei fo thin. Brightness control theih tawh loh avangin a hmanna pangngai ah i hmang duh tawh lo anih pawhin Display Board atan te a tha ve viau mai. Tin, discharge lamp family hrim hrim hi a glass chhung lampang coating a chhiat tawh hian UV ray a chhuah tel thin avangin a himlo a ngaih ani thin a. Mahse a omna pangngai a i dah leh kha chuan coating kangral vek tawh pawh nise optical diffuser te ala kaltlang vek avangin a la him tawk turah ka ngai.