Posts

Showing posts from February, 2020

Ads

C Program for Level Sketch

C Level Sketch: #include<stdio.h> #include<conio.h> #include<math.h> int main() {  float th,ov, HH,H,L,LL,lowTap,UpTap,CC,HH1,H1,L1,LL1,HHper,Hper,Lper,LLper,BtTap;  char ch;  do  {  printf("\nEnter Tank Height in mm:");  scanf("%f",&th);  printf("\nHeight of HH:");  scanf("%f",&HH);  printf("\nHeight of H:");  scanf("%f",&H);  printf("\nHeight of L:");  scanf("%f",&L);  printf("\nHeight of LL:");  scanf("%f",&LL);  printf("\nEnter Height of Overflow Nozzle (if required):");  scanf("%f",&ov);  if (ov != 0)  {   th = ov;  }  else  {   th = th;  }    printf("Height Valid: %.2f",th);   HHper = (HH * 100)/th;   Hper = (H * 100)/th;   Lper = (L * 100)/th;   LLper = (LL * 100)/th;    if (HHper < 90 && LLper > 10)   {    printf("\nAlarm Positions are Valid.");   }   else   {    printf("\nCha

Sun - The Ball of Fire

Image
Mysterious Sun: Electromagnetic winds emmited from Sun are solar winds. Solar winds consists of protons and electrons, when these protons and electrons interact with Earth's magnetic field sky get lit up by different colors. The solar winds are emmited by solar holes in sun, as these solar holes are less dense than other parts of Sun, they provide path to allow the wind outwards to surface of Sun. These winds are thrown out by such a huge force that they can travel very long distances, even reaching to Earth. These winds can have speed up to 1000 Km/sec. Solar Emission Even though we know Sun from centuries, there are many mysteries of Sun remained unsolved. Most popular mystery is regarding Corona of Sun. Corona is outer layer of Sun's atmosphere. Corona is hotter than the inner layer Chromosphere.  Sun's visible surface Photosphere has temperature 5800°C. Outer layer of Photosphere is Chromosphere. Temperature of Chromosphere is estimated to be 4000°C. B

Ads

Popular posts from this blog

VLSI: 1-4 DEMUX (Demultiplexer) Dataflow Modelling with Testbench

VLSI: BCD to Excess 3 and Excess 3 to BCD Dataflow Modelling

VLSI: 2 Bit Magnitude Comparator Dataflow Modelling

1 to 4 DEMUX (Demultiplexer) Verilog CodeStructural/Gate Level Modelling with Testbench

Full Subtractor Verilog Code in Structural/Gate Level Modelling with Testbench