Atmospheric Pressure, Circulation, and Climate Dynamics

Air Pressure

  • Definition: Force exerted by the weight of air on Earth’s surface.
  • Measurement: Measured by a barometer.
  • Standard: Sea-level pressure = 1013.25 mb (hPa).

Factors Affecting Air Pressure

  1. Temperature
  2. Altitude
  3. Water vapour
  4. Earth’s rotation

Pressure Belts

LatitudeBelt
Equatorial Low (Doldrums)
30°Subtropical High (Horse Latitudes)
60°Subpolar Low
90°Polar High

Memory Trick

0 Low → 30 High → 60 Low → 90 High

Forces Affecting Winds

  • Pressure Gradient Force: High to Low
  • Coriolis Force: Deflects right
Read More

Maternal Health, Nursing Care, and Public Health Protocols

Antenatal Care (ANC)

Definition

Antenatal care is the care and supervision given to a pregnant woman from the time of conception until the onset of labour to ensure the health of both mother and baby.

Objectives of Antenatal Care

  • To ensure the health of the mother and fetus
  • To detect high-risk pregnancy early
  • To prevent complications
  • To prepare the mother for labour and parenthood
  • To reduce maternal and neonatal mortality

Components of Antenatal Care

  1. Registration
    • Early registration (preferably in the first
Read More

Hydrology: Water Balance, Precipitation, and Atmospheric Processes

Water Balance Fundamentals

The fundamental equation for water balance is:

I − O = ΔS

Where I = Inputs, O = Outputs, and ΔS = Change in Storage.

In hydrological terms, this is often expressed as:

(IE + IR) − (OO + OS) = ΔS

The change in storage (ΔS) can be calculated using the components of the hydrological cycle:

ΔS = Inputs – Outputs
= (P + Qin + Gin) – (Qout + Evt + Gout)

Water Storage Components

Atmospheric Water Storage

  • Precipitation (e.g., Rain, Snow, Hail)

Surface Water Storage

  • Lakes, Rivers,
Read More

Atmospheric Dynamics: Air Circulation, Masses, and Weather Systems

Atmospheric Air Circulation

The atmosphere contains gases such as nitrogen, carbon dioxide, oxygen, and ozone, along with suspended particles like water vapor. Weather phenomena primarily occur in the troposphere, the lowest layer of the atmosphere.

Principles of Air Movement

  • Warm air expands, its density decreases, and it rises, creating an area of low pressure.
  • As air ascends through the upper layers of the atmosphere, it cools down.
  • Cold air contracts and descends into the atmosphere, generating a
Read More

Science Fundamentals: Method, Measurement, Weather

Scientific Method Basics

Q, R, H, E, D, C, P

Aristotle gave us the hypothesis step (if you think hard enough, you can figure out the answer).

Galileo gave us the experiment step 2,000 years later.

For a controlled experiment, only one variable can change. If more than one changes, then the results are invalid.

Scientific Measuring Tools

Know the scientific measuring tools and what they measure:

  • Metric ruler: measures length in centimeters
  • Thermometer: measures the temperature of objects
  • Triple Beam Balance:
Read More

Java Programs: Leap Year, Divisibility, and More

Checking for Leap Years in Java

This program allows the user to enter a year and checks whether it is a leap year:

import java.util.Scanner;

public class Leap {
    public static void main(String[] args) {
        Scanner input = new Scanner(System.in);
        System.out.print("Enter a year: ");
        int year = input.nextInt();

        if ((year % 4 == 0 && year % 100 != 0) || (year % 400 == 0)) {
            System.out.println(year + " is a leap year ");
        } else {
          
Read More