Before you say you are poor please look at these photos(Cambodia)











ជីវិតអ្នកអាចប្រសេីរជាងគេរាប់លាននាក់រួចទៅហេីយ!! ហេតុអ្វីអ្នកនៅមិនសប្បាយចិត្តទៀត?

Before you say you are poor please look at these photos!! Your life will be change from negative to positive in a second.

Keep on doing &believing !
Your life is better than million million people now already!!

matlab code for line coding : unipolar, polar, bipolar and manchester code

matlab code for line coding : unipolar, polar, bipolar and manchester code
clear all;
x=[1 0 1 1 0 1];
nx=size(x,2);
sign=1;
i=1;
while i<nx+1
    t = i:0.001:i+1-0.001;
    if x(i)==1
        unipolar_code=square(t*2*pi,100);
        polar_code=square(t*2*pi,100);
        bipolar_code=sign*square(t*2*pi,100);
        sign=sign*-1;
        manchester_code=-square(t*2*pi,50);
    else
        unipolar_code=0;
        polar_code=-square(t*2*pi,100);
        bipolar_code=0;
        manchester_code=square(t*2*pi,50);
    end
    subplot(4,1,1);
    plot(t,unipolar_code);
    ylabel('unipolar code');
    hold on;
    grid on;
    axis([1 10 -2 2]);
  
    subplot(4,1,2);
    plot(t,polar_code);
    ylabel('polar code');
    hold on;
    grid on;
    axis([1 10 -2 2]);
  
    subplot(4,1,3);
    plot(t,bipolar_code);
    ylabel('bipolar code');
    hold on;
    grid on;
    axis([1 10 -2 2]);
      
    subplot(4,1,4);
    plot(t,manchester_code);
    ylabel('manchester code');
    hold on;
    grid on;
    axis([1 10 -2 2]);
  
    i=i+1;

end

suhaag_shakya at 10:38 PM

Share


10 comments:

Tien NguyenNovember 18, 2013 at 8:09 AM

Can you write to me a full code of HDB3?
thanks.

Reply

Replies

suhaag_shakyaFebruary 23, 2014 at 7:10 AM

https://www.blogger.com/blogger.g?blogID=1098589623302643586#editor/target=post;postID=3255457773256582234;onPublishedMenu=posts;onClosedMenu=posts;postNum=0;src=postname

Reply

AutomatistFebruary 5, 2014 at 11:03 AM

hi! the code you have written above, is applicable the way it is on matlab?

Reply

grujash ardeshanaApril 16, 2014 at 7:23 AM

thanks dude

Reply

孤狼August 30, 2014 at 2:32 AM

but why some of the line is missing or breaking?
anyway to solve it?

Reply

Rishabh c nOctober 7, 2014 at 12:27 PM

Create a MATLAB program for the B8ZS code. Create signaling formats corresponding to 1,000,000 bits making the following assumptions on your bitstream (the following are separate cases to consider)

o P(1)=P(0)=0.5, i.e. ‘1’ and ‘0’ are equally likely
o P(1)=0.3; P(0)=0.7

Reply

pramodh bayyanaNovember 9, 2016 at 5:16 AM

do u have code for rz polar and bipolar

Reply

Replies

Sameer HadiNovember 29, 2016 at 11:20 PM

if x(i)==1
unipolar_code=square(t*2*pi,100);
polar_code=square(t*2*pi,100);
bipolar_code=sign*square(t*2*pi,100);
sign=sign*-1;
manchester_code=-square(t*2*pi,50);
else
unipolar_code=0;
polar_code=-square(t*2*pi,100);
bipolar_code=0;
manchester_code=square(t*2*pi,50);

Matlab code for convolution of two signals without using conv function

Matlab code for convolution of two signals without using conv function
%Matlab code for convolution of two signals without using conv function

close all
clear all
x=input('Enter x:   ')                % input x in the form [1,2,3,4,5]
h=input('Enter h:   ')
m=length(x);
n=length(h);
X=[x,zeros(1,n)];                     % padding of n zeros
H=[h,zeros(1,m)];                    % padding of m zeros
for i=1:n+m-1
    Y(i)=0;
    for j=1:i
        Y(i)=Y(i)+X(j)*H(i-j+1);
    end
end
Y
stem(Y);
ylabel('Y[n]');
xlabel('----->n');
title('Convolution of Two Signals without conv function');


Mathlab code AM modulation

Mathlab code AM modulation


my codes

 matlab c,c++ vhdl 

AM modulation


clc;
Ac=2; 
fc=.9;

Am=.5;
fm=.05;
Fs=100;

ka=1;

t=[0:0.1:50];
ct=Ac*cos(2*pi*fc*t);
mt=Am*cos(2*pi*fm*t);
DSBAMt=ct.*(1+ka*mt);

subplot(2,2,1);
plot(mt);
ylabel('message signal');
grid on;

subplot(2,2,2);
plot(ct);
ylabel('carrier');
grid on;

subplot(2,2,3);
plot(DSBAMt);
ylabel('DSBAM signal');
grid on;

mathlab code QPSK modulation

mathlab code QPSK modulation


my codes

 



QPSK modulation


%try cosine wave plot also
%a=.5;  
pi=3.14;
f=1;

x=[0 0 0 1 1 0 1 1 0 0 1 0  1 1 0 1];
nx=size(x,2);

i=1;
while i<nx+1
    t = i:0.001:i+2;
    if x(i)==0 && x(i+1)==0
        z=sin(2*pi*f*t-3*pi/4);
        dibit=0;
    elseif x(i)==0 && x(i+1)==1
        z=sin(2*pi*f*t-pi/4);
        dibit=1;
    elseif x(i)==1 && x(i+1)==0
        z=sin(2*pi*f*t+pi/4);
        dibit=2;
    else
        z=sin(2*pi*f*t+3*pi/4);
        dibit=3;
    end
    %subplot(2,1,1);
    plot(t,dibit,'r');
    %grid on;
    hold on;
    %subplot(2,1,2);
    plot(t,z);
    hold on;
    grid on;
    axis([1 20 -3 3]);
    i=i+2;

end

mathlab code Fourier series of rectangular wave

mathlab code Fourier series of rectangular wave


my codes

 matlab c,c++ vhdl ▼

Sunday, May 12, 2013

Fourier series of rectangular wave


%Fourier series of  rectangular wave
clc;
close all;
clear all;

j=1;
T=4;    %Time period of square wave
tau=1;  %2tau= On time of the square wave
w0=2*pi/T;
N=50; 
j=1;
for k=-N:1:N 
    if(k==0)
        c(j)=2*tau/T;   % fourier series coefficients of rectangular pulse
    else
        c(j)=2*sin(k*w0*tau)/(k*w0*T);
    end
   j=j+1;
end
k=-N:1:N;
subplot(2,1,1);
stem(k,c);      %plot fourier series coefficients
grid on;
xlabel('k');
ylabel('fourier series coefficient of rectangular pulse');

%%----------------------------------------------------
l=1;
time=10;
for t=-time:0.01:time
    sum=0;
    j=1;
    for k=-N:1:N
        sum=sum+c(j)*exp(i*k*w0*t); %synthesis equation
        j=j+1;
    end
    s(l)=sum;
    l=l+1;
end
t=-time:0.01:time
subplot(2,1,2);
plot(t,s);          % plot rectangular pulse
grid on;
xlabel('time');
ylabel('rectangular pulse');



suhaag_shakya at 6:55 AM

Share


No comments:

Post a Comment





mathlab code HDB3

mathlab code HDB3
my codes

 matlab c,c++ vhdl ▼

Sunday, February 23, 2014

HDB3


%HBD3
clc;
clear all;
close all;
x=[1 1 0 0 0 0 0 0 0 0 1 1 0 0 0 0 0 1 0];
%x=[1 0 0 0 0 1 0  1 1 1 0 0 0 0 1 0 1];
%x=[0 0 0 0 0 1 1 1 0 0 0 0 1 0];
hdb3_code=x;
ami_code=x;
nx=size(x,2);
next_pulse=1;
sign=-1;
B=0;
V=1;
N=0;
i=1;
flag=0;
four_zero=0;
while i<nx+1 
    if x(i)==1
        hdb3_code(i)=next_pulse;       
        next_pulse=next_pulse*-1;
        N=N+1;       
       
    else
        if i<nx-2
            if (x(i+1)==0 & x(i+2)==0 & x(i+3)==0 )                                                              
                        if(rem(N,2)~=0 | flag==0)
                            B=0;
                            V=next_pulse*-1;
                        else
                            B=next_pulse;
                            V=B;
                            next_pulse=next_pulse*-1;
                        end                      
                        hdb3_code(i)=B;
                        hdb3_code(i+3)=V;                      
                        N=0;
                        flag=1;
                        four_zero=1;
                       
             end
        end        
    end
    if four_zero==1
        i=i+4;
        four_zero=0;
    else
        i=i+1;
    end
end
x
hdb3_code


i=1;
while i<nx+1
    t = i:0.001:i+1-0.001;
    if x(i)==1
        unipolar_code=square(t*2*pi,100);
        bipolar_code=sign*square(t*2*pi,100);
        sign=sign*-1;
       
    else
        unipolar_code=0;              
        bipolar_code=0;
       
    end
    subplot(3,1,1);
    plot(t,unipolar_code);
    ylabel('unipolar code');
    hold on;
    grid on;
    axis([1 nx -2 2]);
   
    subplot(3,1,2);
    plot(t,bipolar_code);
    ylabel('bipolar code');
    hold on;
    grid on;
    axis([1 nx -2 2]);
   
    subplot(3,1,3);
    plot(t,hdb3_code(i)*square(t*2*pi,100));
    ylabel('HDB3 code');
    hold on;
    grid on;
    axis([0 nx+1 -2 2]);
    i=i+1;
end


Donate a Car makes donating a vehicle simple for both you

Donate a Car makes donating a vehicle simple for both you, and the charity you love. We’re honored to process every donation made, and we’re committed to providing exceptional customer service every step of the way.

Donate a Car made it easy for us to be good stewards of the value that remained in our Dodge Caravan. Their professionalism was exemplary and it was so very quickly attended to. Well done.

Donate a Car has been a really cool partner and we can’t wait to keep working with you! Thank you for all the amazing work that you do! 

When you donate a car, you’re making a difference to the charity that matters most to you. You can choose any registered Canadian Charity to gift, and we will ensure their receiving process is easy as well. There are no fees charged to the charities at any time so they can put every one of your donation dollars to work for the cause you care about. We take care of you and your car. We take care of your charity.


PAST CONTINUOUS TENSE

PAST CONTINUOUS TENSE


PAST CONTINUOUS TENSE


FUNCTIONS OF THE PAST CONTINUOUS

The past continuous describes actions or events in a time before now, which began in the past and is still going on at the time of speaking. In other words, it expresses an unfinished or incomplete action in the past.
It is used:
  • Often, to describe the background in a story written in the past tense, e.g. "The sun was shining and the birds were singing as the elephant came out of the jungle. The other animals were relaxing in the shade of the trees, but the elephant moved very quickly. She was looking for her baby, and she didn't notice the hunter who was watching her through his binoculars. When the shot rang out, she was running towards the river..."
  • to describe an unfinished action that was interrupted by another event or action, e.g. "I was having a beautiful dream when the alarm clock rang."
  • to express a change of mind: e.g. "I was going to spend the day at the beach but I've decided to get my homework done instead."
  • with 'wonder', to make a very polite request: e.g. "I was wondering if you could baby-sit for me tonight."
EXAMPLES
  • They were waiting for the bus when the accident happened.
  • Caroline was skiing when she broke her leg.
  • When we arrived he was having a bath.
  • When the fire started I was watching television.
Note: with verbs not normally used in the continuous form, the simple past is used.

FORMING THE PAST CONTINUOUS

The past continuous of any verb is composed of two parts : the past tense of the verb "to be" (was/were), and the base of the main verb +ing.
Subjectwas/werebase + ing
Theywerewatching
Affirmative
Shewasreading
Negative
Shewasn'treading
Interrogative
Wasshereading?
Interrogative negative
Wasn'tshereading?
TO PLAY, PAST CONTINUOUS
AffirmativeNegativeInterrogative
I was playingI was not playingWas I playing?
You were playingYou were not playingWere you playing?
He was playingHe wasn't playingWas he playing?
We were playingWe weren't playingWere we playing?
They were playingThey weren't playingWere they playing?

Dr. Richardson, in his lectures on alcohol, given both in England and America, speaking of the action of this substance on the blood after passing from the stomach, says:



Dr. Richardson, in his lectures on alcohol, given both in England and America, speaking of the action of this substance on the blood after passing from the stomach, says:


"Suppose, then, a certain measure of alcohol be taken into the stomach, it will be absorbed there, but, previous to absorption, it will have to undergo a proper degree of dilution with water, for there is this peculiarity respecting alcohol when it is separated by an animal membrane from a watery fluid like the blood, that it will not pass through the membrane until it has become charged, to a given point of dilution, with water. It is itself, in fact,  so greedy for water, it will pick it up from watery textures, and deprive them of it until, by its saturation, its power of reception is exhausted , after which it will diffuse into the current of circulating fluid."


It is this power of absorbing water from every texture with which alcoholic spirits comes in contact, that creates the burning thirst of those who freely indulge in its use. Its effect, when it reaches the circulation, is thus described by Dr. Richardson:


"As it passes through the circulation of the lungs it is exposed to the air, and some little of it, raised into vapor by the natural heat, is thrown off in expiration. If the quantity of it be large, this loss may be considerable, and the odor of the spirit may be detected in the expired breath. If the quantity be small, the loss will be comparatively little, as the spirit will be held in solution by the water in the blood. After it has passed through the lungs, and has been driven by the left heart over the arterial circuit, it passes into what is called the minute circulation, or the structural circulation of the organism. The arteries here extend into very small vessels, which are called arterioles, and from these infinitely small vessels spring the equally minute radicals or roots of the veins, which are ultimately to become the great rivers bearing the blood back to the heart. In its passage through this minute circulation the alcohol finds its way to every organ. To this brain, to these muscles, to these secreting or excreting organs, nay, even into this bony structure itself, it moves with the blood. In some of these parts which are not excreting, it remains for a time diffused, and in those parts where there is a large percentage of water, it remains longer than in other parts. From some organs which have an open tube for conveying fluids away, as the liver and kidneys, it is thrown out or eliminated, and in this way a portion of it is ultimately removed from the body. The rest passing round and round with the circulation, is probably decomposed and carried off in new forms of matter.


"When we know the course which the alcohol takes in its passage through the body, from the period of its absorption to that of its elimination, we are the better able to judge what physical changes it induces in the different organs and structures with which it comes in contact. It first reaches the blood; but, as a rule, the quantity of it that enters is insufficient to produce any material effect on that fluid. If, however, the dose taken be poisonous or semi-poisonous, then even the blood, rich as it is in water and it contains seven hundred and ninety parts in a thousand is affected. The alcohol is diffused through this water, and there it comes in contact with the other constituent parts, with the fibrine, that plastic substance which, when blood is drawn, clots and coagulates, and which is present in the proportion of from two to three parts in a thousand; with the albumen which exists in the proportion of seventy parts; with the salts which yield about ten parts; with the fatty matters; and lastly, with those minute, round bodies which float in myriads in the blood (which were discovered by the Dutch philosopher, Leuwenhock, as one of the first results of microscopical observation, about the middle of the seventeenth century), and which are called the blood globules or corpuscles. These last-named bodies are, in fact, cells; their discs, when natural, have a smooth outline, they are depressed in the centre, and they are red in color; the color of the blood being derived from them. We have discovered that there exist other corpuscles or cells in the blood in much smaller quantity, which are called white cells, and these different cells float in the blood-stream within the vessels. The red take the centre of the stream; the white lie externally near the sides of the vessels, moving less quickly. Our business is mainly with the red corpuscles. They perform the most important functions in the economy; they absorb, in great part, the oxygen which we inhale in breathing, and carry it to the extreme tissues of the body; they absorb, in great part, the carbonic acid gas which is produced in the combustion of the body in the extreme tissues, and bring that gas back to the lungs to be exchanged for oxygen there; in short, they are the vital instruments of the circulation.


"With all these parts of the blood, with the water, fibrine, albumen, salts, fatty matter and corpuscles, the alcohol comes in contact when it enters the blood, and, if it be in sufficient quantity, it produces disturbing action. I have watched this disturbance very carefully on the blood corpuscles; for, in some animals we can see these floating along during life, and we can also observe them from men who are under the effects of alcohol, by removing a speck of blood, and examining it with the microscope. The action of the alcohol, when it is observable, is varied. It may cause the corpuscles to run too closely together, and to adhere in rolls; it may modify their outline, making the clear-defined, smooth, outer edge irregular or crenate, or even starlike; it may change the round corpuscle into the oval form, or, in very extreme cases, it may produce what I may call a truncated form of corpuscles, in which the change is so great that if we did not trace it through all its stages, we should be puzzled to know whether the object looked at were indeed a blood-cell. All these changes are due to the action of the spirit upon the water contained in the corpuscles; upon the capacity of the spirit to extract water from them. During every stage of modification of corpuscles thus described, their function to absorb and fix gases is impaired, and when the aggregation of the cells, in masses, is great, other difficulties arise, for the cells, united together, pass less easily than they should through the minute vessels of the lungs and of the general circulation, and impede the current, by which local injury is produced.


"A further action upon the blood, instituted by alcohol in excess, is upon the fibrine or the plastic colloidal matter. On this the spirit may act in two different ways, according to the degree in which it affects the water that holds the fibrine in solution. It may fix the water with the fibrine, and thus destroy the power of coagulation; or it may extract the water so determinately as to produce coagulation."

EFFECT OF ALCOHOL ON THE BLOOD.

EFFECT OF ALCOHOL ON THE BLOOD.

Dr. Richardson, in his lectures on alcohol, given both in England and America, speaking of the action of this substance on the blood after passing from the stomach, says:

"Suppose, then, a certain measure of alcohol be taken into the stomach, it will be absorbed there, but, previous to absorption, it will have to undergo a proper degree of dilution with water, for there is this peculiarity respecting alcohol when it is separated by an animal membrane from a watery fluid like the blood, that it will not pass through the membrane until it has become charged, to a given point of dilution, with water. It is itself, in fact,  so greedy for water, it will pick it up from watery textures, and deprive them of it until, by its saturation, its power of reception is exhausted , after which it will diffuse into the current of circulating fluid."

It is this power of absorbing water from every texture with which alcoholic spirits comes in contact, that creates the burning thirst of those who freely indulge in its use. Its effect, when it reaches the circulation, is thus described by Dr. Richardson:

"As it passes through the circulation of the lungs it is exposed to the air, and some little of it, raised into vapor by the natural heat, is thrown off in expiration. If the quantity of it be large, this loss may be considerable, and the odor of the spirit may be detected in the expired breath. If the quantity be small, the loss will be comparatively little, as the spirit will be held in solution by the water in the blood. After it has passed through the lungs, and has been driven by the left heart over the arterial circuit, it passes into what is called the minute circulation, or the structural circulation of the organism. The arteries here extend into very small vessels, which are called arterioles, and from these infinitely small vessels spring the equally minute radicals or roots of the veins, which are ultimately to become the great rivers bearing the blood back to the heart. In its passage through this minute circulation the alcohol finds its way to every organ. To this brain, to these muscles, to these secreting or excreting organs, nay, even into this bony structure itself, it moves with the blood. In some of these parts which are not excreting, it remains for a time diffused, and in those parts where there is a large percentage of water, it remains longer than in other parts. From some organs which have an open tube for conveying fluids away, as the liver and kidneys, it is thrown out or eliminated, and in this way a portion of it is ultimately removed from the body. The rest passing round and round with the circulation, is probably decomposed and carried off in new forms of matter.

"When we know the course which the alcohol takes in its passage through the body, from the period of its absorption to that of its elimination, we are the better able to judge what physical changes it induces in the different organs and structures with which it comes in contact. It first reaches the blood; but, as a rule, the quantity of it that enters is insufficient to produce any material effect on that fluid. If, however, the dose taken be poisonous or semi-poisonous, then even the blood, rich as it is in water and it contains seven hundred and ninety parts in a thousand is affected. The alcohol is diffused through this water, and there it comes in contact with the other constituent parts, with the fibrine, that plastic substance which, when blood is drawn, clots and coagulates, and which is present in the proportion of from two to three parts in a thousand; with the albumen which exists in the proportion of seventy parts; with the salts which yield about ten parts; with the fatty matters; and lastly, with those minute, round bodies which float in myriads in the blood (which were discovered by the Dutch philosopher, Leuwenhock, as one of the first results of microscopical observation, about the middle of the seventeenth century), and which are called the blood globules or corpuscles. These last-named bodies are, in fact, cells; their discs, when natural, have a smooth outline, they are depressed in the centre, and they are red in color; the color of the blood being derived from them. We have discovered that there exist other corpuscles or cells in the blood in much smaller quantity, which are called white cells, and these different cells float in the blood-stream within the vessels. The red take the centre of the stream; the white lie externally near the sides of the vessels, moving less quickly. Our business is mainly with the red corpuscles. They perform the most important functions in the economy; they absorb, in great part, the oxygen which we inhale in breathing, and carry it to the extreme tissues of the body; they absorb, in great part, the carbonic acid gas which is produced in the combustion of the body in the extreme tissues, and bring that gas back to the lungs to be exchanged for oxygen there; in short, they are the vital instruments of the circulation.

"With all these parts of the blood, with the water, fibrine, albumen, salts, fatty matter and corpuscles, the alcohol comes in contact when it enters the blood, and, if it be in sufficient quantity, it produces disturbing action. I have watched this disturbance very carefully on the blood corpuscles; for, in some animals we can see these floating along during life, and we can also observe them from men who are under the effects of alcohol, by removing a speck of blood, and examining it with the microscope. The action of the alcohol, when it is observable, is varied. It may cause the corpuscles to run too closely together, and to adhere in rolls; it may modify their outline, making the clear-defined, smooth, outer edge irregular or crenate, or even starlike; it may change the round corpuscle into the oval form, or, in very extreme cases, it may produce what I may call a truncated form of corpuscles, in which the change is so great that if we did not trace it through all its stages, we should be puzzled to know whether the object looked at were indeed a blood-cell. All these changes are due to the action of the spirit upon the water contained in the corpuscles; upon the capacity of the spirit to extract water from them. During every stage of modification of corpuscles thus described, their function to absorb and fix gases is impaired, and when the aggregation of the cells, in masses, is great, other difficulties arise, for the cells, united together, pass less easily than they should through the minute vessels of the lungs and of the general circulation, and impede the current, by which local injury is produced.



"A further action upon the blood, instituted by alcohol in excess, is upon the fibrine or the plastic colloidal matter. On this the spirit may act in two different ways, according to the degree in which it affects the water that holds the fibrine in solution. It may fix the water with the fibrine, and thus destroy the power of coagulation; or it may extract the water so determinately as to produce coagulation."

FOOD POISONING


Food poisoning is an acute gastroenteritis caused by the consumption of a food material or a drink which contains the pathogenic micro organism or their toxins or poisonous chemicals.Food poisoning is common in hostels,hotels,communal feedings, and festivel seasons.

A group of persons will be affected with same type of symptoms ,and they give a history of consumption of a common food before few hours.

Types of food poisoning

1) Bacterial food poisoning:


Here the micro organisms called bacteria are responsible.The food material may contain the pathogenic bacteriae or their toxin and will be ingested along with the food.

2) Non bacterial food poisoning:


Due to the presence of toxic chemicals like fertilizers,insectisides,heavy metals and ect.

Since bacterial food poisoning is common it is discussed here.

Bacterial food poisoning:

All bacteria are not harmful.There are some pathogenic bacteria which secrete toxins and cause clinical manifestations.These organisms enter the human body through food articles or drinks.

How food poisoning occures:

1) Presence of bacteria in the water.

2) The raw materials for the food may contain toxins.

3) Premises where the food is prepared may contain micro organisms or toxins.

4) Food handlers may have some infectious diseases.

5) Some animals like dogs,rats may contaminate the food.

6) If prepared food is kept in the room temperature for a long time and heated again can make a chance for food poisoning.

7) Purposely some body mixing toxins in the food.


Some common bacterial food poisonings.

1) Salmonella food poisoning:

There are three different varieties of salmonella bacteria.(salmonella typhimurium,salmonella cholera suis,salmonella enteritidis) These bacteria are present in milk, milk products and eggs.  Symptoms of this food poisoning include nausea, vomiting and diarrhoea.  Fever is also common.

2) Botulism:

This is the dangerous type of food poisoning caused by clostridium botulinum.   The spores of these organisms are seen in the soil and enters the human body through pickles and canned fish ect.Compared to other food poisonings here vomiting and diarrhoea are rare Mainly the nervous system is affected.The symptoms starts with double vision,numbness with weakness.Later there will be paralysis with cardiac and respiratory failure ending in death.

3) Staphylococcal food poisoning:

It is caused by staphylo coccus aureus. These organisms usually cause skin troubles like boils and eruptions.It causes mastitis in cow.Through the milk and milk products it enders and causes gastroenteritis.There will be vomiting,abdominal cramps with diarrhoea.

4) Closteridium food poisoning:

This is caused by closteridium perfringens.They are present in stool,soil and water. They enter the body through,meat,meat dishes and egg ect.If food articles are cooked and kept in room temperature for a long time and heated again before eating can result this food poisoning.Symptoms include vomiting ,diarrhoea and abdominal cramps.

5) Bacillus cereus:

The spores of these organisms can survive cooking and causes enteritis.  Diarrhoea and vomiting is common in this infection.


How to investigate food poisoning?


1) Examine each and every person affected.

2) Water sample should be tested.

3) Kitchen, store room and food samples should be examined.

4) The cook and food handlers should be questioned and examined.

5) Samples of vomitus and stool of all victims should be tested to identify the bacteria.


How to prevent food poisoning:-


1) Only purified water should be used.

2) Hygiene should be maintained by all persons keeping contact with food.

3) Workers should use masks, cap and gloves during cooking and serving.

4) Sick individuals should not come in contact with food materials.

5) Kitchen and premises should be neat and clean.

5) Vessels should be washed with soap and hot water.

6) Should not keep the prepared food for a long time in room temperature.

7) All food materials should be kept in closed containers.

8) Animals like dog, cat, rat ect should not come in contact with food materials.

9) Vegetables should be washed before cooking.

10) Meat should be fresh and should be purchased from recognised slaughter house.