The Fourier analysis is very powerful and useful instrument of investigation that is used widely in many scientific applications. It named after French mathematician Joseph Fourier who proved that arbitrary signal can be represented by sum of harmonic signals. Each harmonic signal (sinus or cosines) has own frequency, phase and amplitude. Нarmonic signal keeps its shape while passing through the linear circuit and change only amplitude and phase. This ability makes the Fourier analysis to become a power method of investigation. To perform Fourier analysis on computers in digital form the Discrete Fourier Transform (DFT) was developed. The fast optimized version of DFT is called Fast Fourier Transform (FFT).
Sunday, January 29, 2012
Saturday, January 28, 2012
Electrical impedance tomography (Part III) - The nonlinear model
The nonlinear model of EIT will be discussed. To obtain a tomographic image of the object a matrix of
electrodes is superimposed on it's surface and series of measurements
are produced.
During the one measurement through the
current electrodes the current is
passed, while from measurement
electrodes the potentials are
measured relative to a reference electrode. This procedure is repeated with new current electrodes more and more to obtain dataset of observations.
Wednesday, January 25, 2012
Simple Java MVC for Google App Engine
Using heavy Java frameworks on Google Application Engine (GAE) is painful: after some time, when you website gets no incoming requests, GAE stops Java Virtual Machine (JVM). After that to processing new request JVM has to start again and has to start the Framework. Unfortunately Java EE frameworks have doing some initialization process, that takes much time. I tried to use great Play!Framework and Spring Framework but slow "cold start" and slow working forced me to find another solution for implementing MVC for my projects.
I'm going to describe how to write simple MVC framework using plain Java HttpServlets and FreeMarker that can run fast in GAE, doesn't have slow "cold start" and much CPU time consuming.
For my project I used Eclipse Java EE IDE (Indigo Release). I had installed Google Plugin for Eclipse
to make GAE applications development faster and easier.
Wednesday, January 18, 2012
FIR filter implementation
The advantages of FIR filters compared to IIR filters:
1. FIR filter can be designed with linear phase.
2. FIR filter is simple to implement.
Sunday, January 15, 2012
Electrical impedance tomography (Part I)
Electrical impedance tomography (Part II) - The physical principle
The classical forward problem is to find the output response of the model due to the input impact. The model and input signal we know.
Such problems are correct in the sense of Hadamard [1], for which:
1) a solution exists for all input signals;
2) the solution is unique;
3) the solution depends continuously on the input data.
Physical problems that satisfy the conditions of existence of solution, its uniqueness and stability are correct. The solution of such problems are not sensitive to small changes (errors) of input data [2].
Saturday, January 14, 2012
Friday, January 13, 2012
Model-View-Controller (MVC) pattern simple example
Subscribe to:
Posts (Atom)