-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathphysiology-guide-ch16.html
More file actions
1332 lines (1184 loc) · 68.2 KB
/
Copy pathphysiology-guide-ch16.html
File metadata and controls
1332 lines (1184 loc) · 68.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<title>Chapter 16: Pulmonary Ventilation | Physiology Study Guide</title>
<link href="https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Fraunces:wght@600;700&display=swap" rel="stylesheet">
<style>
:root {
--bg-primary: #0a0f1a;
--bg-secondary: #111827;
--bg-card: #1a2234;
--bg-card-hover: #222d42;
--accent-primary: #3b82f6;
--accent-secondary: #8b5cf6;
--accent-success: #10b981;
--accent-warning: #f59e0b;
--text-primary: #f1f5f9;
--text-secondary: #94a3b8;
--text-muted: #64748b;
--border-color: #1e293b;
}
* { margin: 0; padding: 0; box-sizing: border-box; }
body {
font-family: 'DM Sans', sans-serif;
background: var(--bg-primary);
color: var(--text-primary);
line-height: 1.8;
min-height: 100vh;
}
nav {
position: fixed;
top: 0; left: 0; right: 0;
background: rgba(10, 15, 26, 0.9);
backdrop-filter: blur(20px);
border-bottom: 1px solid var(--border-color);
z-index: 1000;
padding: 0.75rem 2rem;
}
.nav-container {
max-width: 900px;
margin: 0 auto;
display: flex;
justify-content: space-between;
align-items: center;
}
.logo {
font-family: 'Fraunces', serif;
font-size: 1.25rem;
font-weight: 700;
background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
-webkit-background-clip: text;
-webkit-text-fill-color: transparent;
}
.nav-chapters { display: flex; gap: 0.5rem; }
.nav-ch {
padding: 0.4rem 0.8rem;
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: 6px;
color: var(--text-secondary);
text-decoration: none;
font-size: 0.85rem;
transition: all 0.2s;
}
.nav-ch:hover, .nav-ch.active {
background: var(--accent-primary);
color: white;
border-color: var(--accent-primary);
}
main {
max-width: 800px;
margin: 0 auto;
padding: 6rem 1.5rem 4rem;
}
.chapter-header {
text-align: center;
margin-bottom: 3rem;
padding-bottom: 2rem;
border-bottom: 1px solid var(--border-color);
}
.chapter-label {
display: inline-block;
background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
color: white;
padding: 0.4rem 1rem;
border-radius: 20px;
font-size: 0.85rem;
font-weight: 600;
margin-bottom: 1rem;
}
.chapter-header h1 {
font-family: 'Fraunces', serif;
font-size: 2.5rem;
margin-bottom: 0.75rem;
}
.chapter-header .subtitle { color: var(--text-secondary); font-size: 1.1rem; }
.learning-objectives {
background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(139, 92, 246, 0.1));
border: 1px solid rgba(59, 130, 246, 0.2);
border-radius: 16px;
padding: 1.5rem 2rem;
margin-bottom: 3rem;
}
.learning-objectives h2 {
font-size: 1.1rem;
color: var(--accent-primary);
margin-bottom: 1rem;
}
.learning-objectives ul { list-style: none; padding: 0; }
.learning-objectives li {
padding: 0.4rem 0 0.4rem 1.5rem;
position: relative;
color: var(--text-secondary);
}
.learning-objectives li::before {
content: '→';
position: absolute;
left: 0;
color: var(--accent-primary);
}
.section { margin-bottom: 3rem; }
.section-number {
display: inline-block;
background: var(--accent-primary);
color: white;
width: 32px; height: 32px;
border-radius: 50%;
text-align: center;
line-height: 32px;
font-weight: 600;
margin-right: 0.75rem;
}
.section h2 {
font-family: 'Fraunces', serif;
font-size: 1.6rem;
margin-bottom: 1.25rem;
display: flex;
align-items: center;
}
.big-idea {
background: var(--bg-card);
border-left: 4px solid var(--accent-primary);
border-radius: 0 12px 12px 0;
padding: 1.5rem;
margin: 1.5rem 0;
}
.big-idea-label {
font-size: 0.75rem;
text-transform: uppercase;
letter-spacing: 0.1em;
color: var(--accent-primary);
font-weight: 600;
margin-bottom: 0.5rem;
}
.big-idea p { font-size: 1.05rem; color: var(--text-primary); }
.why-matters {
background: linear-gradient(135deg, rgba(16, 185, 129, 0.1), rgba(6, 182, 212, 0.1));
border: 1px solid rgba(16, 185, 129, 0.2);
border-radius: 12px;
padding: 1.25rem 1.5rem;
margin: 1.5rem 0;
}
.why-matters h4 { color: var(--accent-success); font-size: 0.9rem; margin-bottom: 0.5rem; }
.why-matters p { color: var(--text-secondary); font-size: 0.95rem; }
.analogy {
background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(249, 115, 22, 0.1));
border: 1px solid rgba(245, 158, 11, 0.2);
border-radius: 12px;
padding: 1.25rem 1.5rem;
margin: 1.5rem 0;
}
.analogy h4 { color: var(--accent-warning); font-size: 0.9rem; margin-bottom: 0.5rem; }
.analogy p { color: var(--text-secondary); font-size: 0.95rem; }
.content p { color: var(--text-secondary); margin-bottom: 1rem; }
.content p strong { color: var(--text-primary); }
.subsection { margin: 2rem 0; }
.subsection h3 {
font-size: 1.2rem;
color: var(--text-primary);
margin-bottom: 1rem;
padding-bottom: 0.5rem;
border-bottom: 1px solid var(--border-color);
}
.content ul, .content ol { padding-left: 1.5rem; margin-bottom: 1rem; color: var(--text-secondary); }
.content li { margin-bottom: 0.5rem; }
.content li strong { color: var(--text-primary); }
.step-by-step {
background: var(--bg-card);
border-radius: 12px;
padding: 1.5rem;
margin: 1.5rem 0;
}
.step-by-step h4 { font-size: 1rem; margin-bottom: 1rem; color: var(--text-primary); }
.step {
display: flex;
gap: 1rem;
margin-bottom: 1rem;
padding-bottom: 1rem;
border-bottom: 1px solid var(--border-color);
}
.step:last-child { margin-bottom: 0; padding-bottom: 0; border-bottom: none; }
.step-num {
width: 28px; height: 28px;
background: var(--accent-primary);
color: white;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-size: 0.85rem;
font-weight: 600;
flex-shrink: 0;
}
.step-content { flex: 1; }
.step-content strong { color: var(--text-primary); display: block; margin-bottom: 0.25rem; }
.step-content p { color: var(--text-secondary); font-size: 0.9rem; margin: 0; }
.key-concept {
background: rgba(139, 92, 246, 0.1);
border: 1px solid rgba(139, 92, 246, 0.2);
border-radius: 12px;
padding: 1.25rem 1.5rem;
margin: 1.5rem 0;
}
.key-concept h4 { color: var(--accent-secondary); font-size: 0.9rem; margin-bottom: 0.75rem; }
.key-concept p, .key-concept ul { color: var(--text-secondary); font-size: 0.95rem; }
.formula-box {
background: var(--bg-secondary);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 1.5rem;
margin: 1.5rem 0;
text-align: center;
}
.formula-box .formula {
font-family: 'Courier New', monospace;
font-size: 1.2rem;
color: var(--accent-primary);
margin-bottom: 0.75rem;
}
.formula-box .explanation { color: var(--text-secondary); font-size: 0.9rem; }
.comparison-table { width: 100%; border-collapse: collapse; margin: 1.5rem 0; font-size: 0.9rem; }
.comparison-table th {
background: var(--bg-card);
padding: 1rem;
text-align: left;
font-weight: 600;
border-bottom: 2px solid var(--accent-primary);
}
.comparison-table td { padding: 1rem; border-bottom: 1px solid var(--border-color); color: var(--text-secondary); }
.values-card {
background: var(--bg-card);
border-radius: 12px;
padding: 1.5rem;
margin: 1.5rem 0;
}
.values-card h4 { margin-bottom: 1rem; color: var(--text-primary); }
.value-row {
display: flex;
justify-content: space-between;
padding: 0.75rem 0;
border-bottom: 1px solid var(--border-color);
}
.value-row:last-child { border-bottom: none; }
.value-label { color: var(--text-secondary); }
.value-number { color: var(--accent-primary); font-weight: 600; font-family: 'Courier New', monospace; }
.clinical {
background: linear-gradient(135deg, rgba(239, 68, 68, 0.1), rgba(236, 72, 153, 0.1));
border: 1px solid rgba(239, 68, 68, 0.2);
border-radius: 12px;
padding: 1.25rem 1.5rem;
margin: 1.5rem 0;
}
.clinical h4 { color: #f87171; font-size: 0.9rem; margin-bottom: 0.75rem; }
.clinical p, .clinical ul { color: var(--text-secondary); font-size: 0.95rem; }
.check-understanding {
background: var(--bg-card);
border: 2px dashed var(--border-color);
border-radius: 12px;
padding: 1.5rem;
margin: 2rem 0;
}
.check-understanding h4 { color: var(--text-primary); margin-bottom: 1rem; }
.check-understanding p { color: var(--text-secondary); font-style: italic; margin-bottom: 0.75rem; }
.reveal-answer {
background: var(--accent-primary);
color: white;
border: none;
padding: 0.5rem 1rem;
border-radius: 6px;
cursor: pointer;
font-size: 0.9rem;
margin-top: 0.5rem;
}
.answer {
display: none;
margin-top: 1rem;
padding-top: 1rem;
border-top: 1px solid var(--border-color);
color: var(--accent-success);
}
.answer.show { display: block; }
.summary {
background: linear-gradient(135deg, var(--bg-card), var(--bg-secondary));
border: 1px solid var(--border-color);
border-radius: 16px;
padding: 2rem;
margin: 3rem 0;
}
.summary h3 { font-family: 'Fraunces', serif; font-size: 1.3rem; margin-bottom: 1rem; }
.summary ul { list-style: none; padding: 0; }
.summary li {
padding: 0.5rem 0 0.5rem 2rem;
position: relative;
color: var(--text-secondary);
}
.summary li::before {
content: '✓';
position: absolute;
left: 0;
color: var(--accent-success);
font-weight: bold;
}
.progress-container {
position: fixed;
top: 60px; left: 0; right: 0;
height: 3px;
background: var(--bg-secondary);
z-index: 999;
}
.progress-bar {
height: 100%;
background: linear-gradient(90deg, var(--accent-primary), var(--accent-secondary));
width: 0%;
}
.expandable {
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: 12px;
margin: 1rem 0;
overflow: hidden;
}
.expandable-header {
padding: 1rem 1.25rem;
cursor: pointer;
display: flex;
justify-content: space-between;
align-items: center;
}
.expandable-header:hover { background: var(--bg-card-hover); }
.expandable-header h4 { margin: 0; font-size: 1rem; color: var(--text-primary); }
.expandable-icon { color: var(--text-muted); transition: transform 0.3s; }
.expandable.open .expandable-icon { transform: rotate(180deg); }
.expandable-content {
display: none;
padding: 0 1.25rem 1.25rem;
border-top: 1px solid var(--border-color);
}
.expandable.open .expandable-content { display: block; }
/* Essay Questions Styling */
.essay-question {
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: 12px;
margin-bottom: 1rem;
overflow: hidden;
transition: all 0.3s ease;
}
.essay-question:hover {
border-color: var(--accent-primary);
}
.essay-q-header {
padding: 1.25rem;
cursor: pointer;
display: flex;
align-items: flex-start;
gap: 1rem;
transition: background 0.2s;
}
.essay-q-header:hover {
background: var(--bg-card-hover);
}
.essay-num {
background: linear-gradient(135deg, var(--accent-primary), var(--accent-secondary));
color: white;
width: 28px;
height: 28px;
border-radius: 50%;
display: flex;
align-items: center;
justify-content: center;
font-weight: 600;
font-size: 0.85rem;
flex-shrink: 0;
}
.essay-text {
flex: 1;
color: var(--text-primary);
font-size: 1rem;
line-height: 1.5;
}
.essay-toggle {
color: var(--accent-primary);
font-size: 1.5rem;
font-weight: 300;
transition: transform 0.3s;
flex-shrink: 0;
}
.essay-question.show-answer .essay-toggle {
transform: rotate(45deg);
}
.essay-answer {
display: none;
padding: 0 1.25rem 1.5rem 1.25rem;
border-top: 1px solid var(--border-color);
background: linear-gradient(135deg, rgba(16, 185, 129, 0.05), rgba(6, 182, 212, 0.05));
}
.essay-question.show-answer .essay-answer {
display: block;
}
.answer-label {
color: var(--accent-success);
font-weight: 600;
font-size: 0.9rem;
margin: 1rem 0 0.75rem 0;
text-transform: uppercase;
letter-spacing: 0.05em;
}
.essay-answer p {
color: var(--text-primary);
font-size: 1rem;
line-height: 1.8;
margin-bottom: 0.75rem;
}
.essay-answer ol, .essay-answer ul {
margin: 0.75rem 0;
padding-left: 1.5rem;
}
.essay-answer li {
color: var(--text-primary);
margin-bottom: 0.5rem;
line-height: 1.6;
}
/* Educational Image Styling */
.edu-image {
background: var(--bg-card);
border: 1px solid var(--border-color);
border-radius: 12px;
padding: 1rem;
margin: 1.5rem 0;
text-align: center;
}
.edu-image img {
max-width: 100%;
height: auto;
border-radius: 8px;
background: #fff;
}
.edu-image .image-caption {
margin-top: 0.75rem;
font-size: 0.85rem;
color: var(--text-secondary);
font-style: italic;
}
.edu-image .image-source {
margin-top: 0.5rem;
font-size: 0.75rem;
color: var(--text-muted);
}
.edu-image .image-source a {
color: var(--accent-primary);
text-decoration: none;
}
.edu-image .image-source a:hover {
text-decoration: underline;
}
@media (max-width: 768px) {
main { padding: 5rem 1rem 3rem; }
.chapter-header h1 { font-size: 1.8rem; }
.nav-chapters { display: none; }
}
</style>
</head>
<body>
<div class="progress-container">
<div class="progress-bar" id="progressBar"></div>
</div>
<nav>
<div class="nav-container">
<div class="logo">Physiology</div>
<div class="nav-chapters">
<a href="index.html" class="nav-ch home">🏠 Home</a>
<a href="physiology-guide-ch16.html" class="nav-ch active">Ch 16</a>
<a href="physiology-guide-ch17.html" class="nav-ch">Ch 17</a>
<a href="physiology-guide-ch18.html" class="nav-ch">Ch 18</a>
<a href="physiology-guide-ch19.html" class="nav-ch">Ch 19</a>
<a href="physiology-guide-ch20.html" class="nav-ch">Ch 20</a>
<a href="practice-quiz.html" class="nav-ch">Practice Test</a>
</div>
</div>
</nav>
<main>
<header class="chapter-header">
<span class="chapter-label">Chapter 16 • Respiratory System</span>
<h1>Pulmonary Ventilation</h1>
<p class="subtitle">Understanding how we breathe and why it matters</p>
</header>
<div class="learning-objectives">
<h2>🎯 What You'll Learn</h2>
<ul>
<li>Why your body needs a respiratory system in the first place</li>
<li>How air travels from outside your body to where gas exchange happens</li>
<li>The physics behind how we breathe in and out</li>
<li>What lung volumes mean and why doctors measure them</li>
<li>What can go wrong with breathing and how we detect it</li>
</ul>
</div>
<section class="section">
<h2><span class="section-number">1</span>The Big Picture: Why Do We Breathe?</h2>
<div class="content">
<p>Before we dive into anatomy and mechanics, let's understand <strong>why breathing exists</strong>.</p>
<div class="big-idea">
<div class="big-idea-label">💡 The Big Idea</div>
<p>Every single cell in your body needs oxygen to produce energy (ATP) and produces carbon dioxide as waste. Your respiratory system is the delivery and waste removal service that keeps all 37 trillion cells alive.</p>
</div>
<div class="key-concept">
<h4>🔑 Primary Functions of the Respiratory System</h4>
<ul>
<li><strong>Gas exchange:</strong> O₂ in, CO₂ out (primary function)</li>
<li><strong>Regulation of pH:</strong> By controlling CO₂ levels (CO₂ + H₂O ⇌ H⁺ + HCO₃⁻)</li>
<li><strong>Protection against pathogens:</strong> Mucus, cilia, macrophages filter and trap invaders</li>
<li><strong>Vocalization:</strong> Air passing over vocal cords produces sound</li>
</ul>
<p><em>Note: Regulation of water balance is NOT a primary respiratory function—that's the kidneys!</em></p>
</div>
<p>Your cells perform <strong>cellular respiration</strong> (oxidative phosphorylation). Cells "burn" glucose using oxygen to produce energy, creating CO₂ as a byproduct.</p>
<div class="analogy">
<h4>💭 Think of it like a city...</h4>
<p>Imagine your body as a massive city with 37 trillion buildings (cells). Each building needs fresh air delivered and waste hauled away constantly. Your respiratory system is like the ventilation system for the entire city—it brings fresh oxygen in and removes carbon dioxide waste.</p>
</div>
<div class="subsection">
<h3>Two Types of "Respiration"</h3>
<table class="comparison-table">
<tr>
<th>Internal Respiration</th>
<th>External Respiration</th>
</tr>
<tr>
<td><strong>What:</strong> Cells using O₂ to make ATP<br><strong>Where:</strong> Inside every cell (mitochondria)</td>
<td><strong>What:</strong> Getting O₂ into blood and CO₂ out<br><strong>Where:</strong> Lungs and blood</td>
</tr>
</table>
</div>
</div>
</section>
<section class="section">
<h2><span class="section-number">2</span>The Pathway: Following Air Through Your Body</h2>
<div class="content">
<div class="big-idea">
<div class="big-idea-label">💡 The Big Idea</div>
<p>The respiratory system is divided into two zones: the <strong>conducting zone</strong> (the highway that moves air) and the <strong>respiratory zone</strong> (where gas exchange happens). Only the respiratory zone can transfer oxygen to your blood.</p>
</div>
<div class="key-concept">
<h4>🔑 Upper vs Lower Respiratory Tract</h4>
<ul>
<li><strong>Upper respiratory tract:</strong> Nose, nasal cavity, mouth, pharynx, larynx</li>
<li><strong>Lower respiratory tract:</strong> Trachea + all bronchial branches + lungs</li>
</ul>
<p>The lungs are located in the <strong>thoracic cavity</strong> and are surrounded by <strong>pleural membranes</strong>.</p>
</div>
<div class="subsection">
<h3>The Air Pathway (in order!)</h3>
<p><strong>Nose/Mouth → Pharynx → Larynx → Trachea → Primary bronchi → Secondary bronchi → Bronchioles → Terminal bronchioles → Respiratory bronchioles → Alveolar ducts → Alveoli</strong></p>
</div>
<div class="edu-image">
<img src="https://encrypted-tbn2.gstatic.com/licensed-image?q=tbn:ANd9GcSCY2qOn_wZfOHLg-o2GJ2p34tjdZLM1sSMZxMTWIi_L7D-H5k9d7KssJpjV8GBXqzD4jXeeQZoZZntztJ5pmSAcpBwjRFqP2xcU6aaKohedyD6I8Q" alt="Major respiratory organs showing upper and lower respiratory tract">
<div class="image-caption">Major respiratory organs: nasal cavity, pharynx, larynx, trachea, bronchi, and lungs</div>
</div>
<div class="key-concept">
<h4>🔑 Key Structures</h4>
<ul>
<li><strong>Pharynx:</strong> Common passageway shared by respiratory and digestive systems</li>
<li><strong>Epiglottis:</strong> Prevents food from entering the larynx during swallowing</li>
<li><strong>Trachea:</strong> Has <strong>C-shaped cartilage rings</strong>—the open part faces posteriorly, allowing the esophagus to expand during swallowing</li>
<li><strong>Right primary bronchus:</strong> <strong>Shorter, wider, and more vertical</strong> than left—aspirated objects more likely to lodge here!</li>
<li><strong>Nasal cavity:</strong> Warms, humidifies, and filters air via <strong>rich blood supply and mucous membranes with cilia</strong></li>
</ul>
</div>
<div class="analogy">
<h4>💭 Think of it like an upside-down tree...</h4>
<p>The trachea is the trunk, bronchi are major branches, bronchioles are smaller branches, and alveoli are like leaves at the tips. There are about 300 million alveoli!</p>
</div>
<div class="key-concept">
<h4>🔑 Conducting Zone vs Respiratory Zone</h4>
<ul>
<li><strong>Conducting zone:</strong> Nose to terminal bronchioles. Warms, humidifies, filters air. <strong>NO gas exchange.</strong> = <strong>Anatomical dead space (~150 mL)</strong></li>
<li><strong>Respiratory zone:</strong> Respiratory bronchioles, alveolar ducts, alveoli. <strong>Gas exchange occurs here!</strong></li>
</ul>
</div>
<div class="key-concept">
<h4>🔑 Bronchi vs Bronchioles</h4>
<ul>
<li><strong>Bronchi:</strong> Have cartilage rings in walls (keep them open)</li>
<li><strong>Bronchioles:</strong> Have <strong>smooth muscle but NO cartilage</strong>—their diameter can change significantly</li>
</ul>
<p>This is why asthma affects bronchioles—smooth muscle spasm causes bronchoconstriction!</p>
</div>
<div class="key-concept">
<h4>🔑 The Alveoli: Where Gas Exchange Happens</h4>
<ul>
<li><strong>Type I alveolar cells:</strong> Thin, flat cells that allow <strong>rapid diffusion of gases</strong></li>
<li><strong>Type II alveolar cells:</strong> Secrete <strong>surfactant</strong></li>
<li><strong>Alveolar macrophages:</strong> <strong>Phagocytize particles and pathogens</strong></li>
</ul>
<p>Alveoli are made of a <strong>single layer of simple squamous epithelium</strong> + elastin fibers that allow stretching.</p>
</div>
<div class="key-concept">
<h4>🔑 The Respiratory Membrane</h4>
<p>Gas exchange occurs across the <strong>respiratory membrane</strong>, which consists of:</p>
<ol>
<li>Alveolar epithelium (Type I cells)</li>
<li>Fused basement membranes</li>
<li>Capillary endothelium</li>
</ol>
<p>Total thickness: only 0.5 μm—allows rapid diffusion!</p>
</div>
<div class="edu-image">
<img src="https://encrypted-tbn2.gstatic.com/licensed-image?q=tbn:ANd9GcS59geVoYQxxidArt7dd5FBeqOj9cHXVAA1UyPtLMTPKr4IBUegJjTGLFfL7HHXDuPktAKRb1GxVVasMWM3lSuUWMgolQDkpkuGxZzAUyzihtnwPuo" alt="Diagram of alveolus showing Type I and Type II cells with gas exchange">
</div>
</div>
</section>
<section class="section">
<h2><span class="section-number">3</span>How We Breathe: The Physics of Ventilation</h2>
<div class="content">
<div class="big-idea">
<div class="big-idea-label">💡 The Big Idea</div>
<p>Air flows from HIGH pressure to LOW pressure. To breathe in, you make the pressure inside your lungs LOWER than outside. To breathe out, you make it HIGHER. Your body does this by changing the VOLUME of your chest cavity.</p>
</div>
<div class="subsection">
<h3>The Gas Laws You Need to Know</h3>
<div class="formula-box">
<div class="formula">Boyle's Law: P₁V₁ = P₂V₂</div>
<div class="explanation">At constant temperature, pressure and volume are <strong>inversely related</strong>.<br>↑ Volume = ↓ Pressure | ↓ Volume = ↑ Pressure</div>
</div>
<div class="formula-box">
<div class="formula">Dalton's Law: P<sub>total</sub> = P₁ + P₂ + P₃ + ...</div>
<div class="explanation">In a gas mixture, total pressure = sum of all partial pressures.<br>Each gas contributes based on its percentage of the mixture.</div>
</div>
<div class="formula-box">
<div class="formula">Ideal Gas Law: PV = nRT</div>
<div class="explanation">Relates pressure, volume, temperature, and number of gas molecules.</div>
</div>
</div>
<div class="key-concept">
<h4>🔑 Respiratory Muscles</h4>
<p><strong>Quiet Inspiration (active):</strong></p>
<ul>
<li><strong>Diaphragm</strong> (does ~75% of the work) — innervated by <strong>phrenic nerve</strong> (C3-C5)</li>
<li><strong>External intercostals</strong></li>
</ul>
<p><strong>Quiet Expiration (passive):</strong> Relies on <strong>elastic recoil</strong> of lungs—no muscle contraction needed!</p>
<p><strong>Forced Expiration (active):</strong></p>
<ul>
<li><strong>Internal intercostals</strong></li>
<li><strong>Abdominal muscles</strong></li>
</ul>
<p><strong>Forced Inspiration:</strong> Accessory muscles (sternocleidomastoid, scalenes)</p>
</div>
<div class="key-concept">
<h4>🔑 Autonomic Control of Airway Diameter</h4>
<ul>
<li><strong>Parasympathetic stimulation:</strong> Bronchoconstriction → <strong>increases airway resistance</strong></li>
<li><strong>Sympathetic stimulation / Epinephrine / Beta-2 agonists:</strong> Bronchodilation → decreases airway resistance</li>
</ul>
</div>
<div class="values-card">
<h4>The Three Key Pressures</h4>
<div class="value-row">
<span class="value-label"><strong>Atmospheric (P<sub>atm</sub>)</strong></span>
<span class="value-number">760 mmHg (= 0)</span>
</div>
<div class="value-row">
<span class="value-label"><strong>Intra-alveolar (P<sub>alv</sub>)</strong></span>
<span class="value-number">Varies: −1 to +1</span>
</div>
<div class="value-row">
<span class="value-label"><strong>Intrapleural (P<sub>ip</sub>)</strong></span>
<span class="value-number">Always negative: ~−4</span>
</div>
</div>
<div class="key-concept">
<h4>🔑 Transpulmonary Pressure</h4>
<p><strong>Transpulmonary pressure = Intra-alveolar pressure − Intrapleural pressure</strong></p>
<p>This pressure difference keeps the lungs inflated. At rest: 0 − (−4) = +4 mmHg. At end of normal expiration, intra-alveolar pressure equals atmospheric pressure.</p>
</div>
<div class="clinical">
<h4>🏥 Clinical Connection: Pneumothorax</h4>
<p>If the chest wall is punctured, air rushes into the pleural space. The negative intrapleural pressure is lost and the lung collapses. Treatment: chest tube to remove the air and restore negative pressure.</p>
</div>
</div>
</section>
<section class="section">
<h2><span class="section-number">4</span>Lung Volumes & Capacities</h2>
<div class="content">
<div class="key-concept">
<h4>🔑 Key Definitions</h4>
<ul>
<li><strong>Pulmonary ventilation:</strong> Movement of air into and out of the lungs (= breathing)</li>
<li><strong>Alveolar ventilation:</strong> Movement of air into and out of the alveoli (the air that actually participates in gas exchange)</li>
</ul>
</div>
<div class="values-card">
<h4>Lung Volumes (average adult male)</h4>
<div class="value-row">
<span class="value-label"><strong>Tidal Volume (V<sub>T</sub>)</strong> — air inhaled/exhaled in normal breath</span>
<span class="value-number">500 mL</span>
</div>
<div class="value-row">
<span class="value-label"><strong>Inspiratory Reserve (IRV)</strong> — extra air you CAN inhale</span>
<span class="value-number">3000 mL</span>
</div>
<div class="value-row">
<span class="value-label"><strong>Expiratory Reserve (ERV)</strong> — extra air you CAN exhale</span>
<span class="value-number">1000 mL</span>
</div>
<div class="value-row">
<span class="value-label"><strong>Residual Volume (RV)</strong> — air that CANNOT be exhaled</span>
<span class="value-number">1200 mL</span>
</div>
<div class="value-row">
<span class="value-label"><strong>Anatomical Dead Space</strong></span>
<span class="value-number">~150 mL</span>
</div>
</div>
<div class="values-card">
<h4>Lung Capacities (combinations of volumes)</h4>
<div class="value-row">
<span class="value-label"><strong>Vital Capacity (VC)</strong> = TV + IRV + ERV</span>
<span class="value-number">~4500 mL</span>
</div>
<div class="value-row">
<span class="value-label"><strong>Total Lung Capacity (TLC)</strong> = VC + RV</span>
<span class="value-number">~5700-6000 mL</span>
</div>
<div class="value-row">
<span class="value-label"><strong>Functional Residual Capacity (FRC)</strong> = ERV + RV</span>
<span class="value-number">~2200 mL</span>
</div>
</div>
<div class="edu-image">
<img src="ref/images/1.jpg" alt="Spirogram showing lung volumes and capacities">
</div>
<div class="why-matters">
<h4>🏥 Why Residual Volume Matters</h4>
<p>The residual volume <strong>prevents the lungs from completely collapsing</strong>. Even after maximum exhalation, air remains to keep alveoli open.</p>
</div>
<div class="formula-box">
<div class="formula">Minute Ventilation = Tidal Volume × Respiratory Rate</div>
<div class="explanation">= 500 mL × 12 breaths/min = 6000 mL/min (total air moved per minute)</div>
</div>
<div class="formula-box">
<div class="formula">Alveolar Ventilation = (V<sub>T</sub> − Dead Space) × Respiratory Rate</div>
<div class="explanation">= (500 mL − 150 mL) × 12 breaths/min = 4200 mL/min<br><strong>Deep, slow breathing improves alveolar ventilation</strong> more than shallow, rapid breathing!</div>
</div>
<div class="clinical">
<h4>🏥 Clinical Connection: Pulmonary Function Tests</h4>
<p><strong>FEV₁/FVC ratio</strong> helps distinguish lung disease types:</p>
<ul>
<li><strong>Normal:</strong> ~80%</li>
<li><strong>Obstructive disease (asthma, COPD):</strong> <70% (air is trapped, can't get out quickly)</li>
<li><strong>Restrictive disease (fibrosis):</strong> Normal or increased ratio (both decrease proportionally)</li>
</ul>
</div>
</div>
</section>
<section class="section">
<h2><span class="section-number">5</span>What Affects How Well You Breathe?</h2>
<div class="content">
<div class="key-concept">
<h4>🔑 Lung Compliance</h4>
<p><strong>Compliance</strong> = the ease with which the lungs can be expanded.</p>
<ul>
<li><strong>High compliance:</strong> Lungs expand easily (less work to breathe)</li>
<li><strong>Low compliance:</strong> Lungs are stiff (more work to breathe)</li>
</ul>
<p><strong>Pulmonary fibrosis</strong> (scarring) causes <strong>decreased compliance</strong>—lungs become stiff and hard to expand.</p>
</div>
<div class="key-concept">
<h4>🔑 Key Concept: Surfactant</h4>
<p><strong>Surfactant</strong> is a phospholipid-protein mixture produced by <strong>Type II alveolar cells</strong>. It reduces surface tension by <strong>disrupting hydrogen bonds between water molecules</strong>.</p>
<p><strong>Functions:</strong></p>
<ul>
<li>Makes lungs easier to expand (increases compliance)</li>
<li>Prevents alveoli from collapsing at the end of expiration</li>
<li>Equalizes pressure in different-sized alveoli</li>
</ul>
</div>
<div class="clinical">
<h4>🏥 Clinical Connection: Infant Respiratory Distress Syndrome</h4>
<p>Premature infants (born before ~28 weeks) often can't produce enough surfactant. This causes:</p>
<ul>
<li>Very high surface tension</li>
<li>Alveoli collapse after each breath</li>
<li>Each breath requires enormous effort → rapid fatigue</li>
</ul>
<p><strong>Treatment:</strong> artificial surfactant + mechanical ventilation.</p>
</div>
<div class="clinical">
<h4>🏥 Clinical Connection: Asthma</h4>
<p>In asthma, breathing difficulty is caused by <strong>bronchoconstriction and inflammation</strong> of bronchioles:</p>
<ul>
<li>Smooth muscle spasm narrows airways</li>
<li>Inflammation causes swelling</li>
<li>Excess mucus production</li>
</ul>
<p><strong>Treatment:</strong> Bronchodilators (albuterol) relax smooth muscle; corticosteroids reduce inflammation.</p>
</div>
</div>
</section>
<div class="summary">
<h3>📋 Chapter 16 Summary</h3>
<ul>
<li>Primary functions: gas exchange, pH regulation, protection, vocalization (NOT water balance)</li>
<li>Upper tract: nose to larynx; Lower tract: trachea + bronchi + lungs (in thoracic cavity, surrounded by pleural membranes)</li>
<li>Air pathway: nose → pharynx → larynx → trachea → primary bronchi → secondary bronchi → bronchioles → terminal bronchioles → alveoli</li>
<li>Conducting zone (no gas exchange) = anatomical dead space (~150 mL); Respiratory zone = gas exchange</li>
<li>Type I cells = gas diffusion; Type II cells = surfactant; Alveolar macrophages = phagocytosis</li>
<li>Bronchi have cartilage; bronchioles have smooth muscle only (can constrict in asthma)</li>
<li>Boyle's Law (P₁V₁ = P₂V₂); Dalton's Law (partial pressures); Ideal Gas Law (PV = nRT)</li>
<li>Quiet inspiration: diaphragm (phrenic nerve) + external intercostals; Quiet expiration: passive (elastic recoil)</li>
<li>Forced expiration: internal intercostals + abdominal muscles</li>
<li>Parasympathetic = bronchoconstriction; Sympathetic/epinephrine = bronchodilation</li>
<li>TV = 500 mL; VC = 4500 mL; TLC = 5700-6000 mL; RV = 1200 mL (prevents lung collapse)</li>
<li>Minute ventilation = TV × RR; Alveolar ventilation = (TV − dead space) × RR</li>
<li>FEV₁/FVC: Normal ~80%; Obstructive <70%; Restrictive normal or increased</li>
<li>Surfactant (Type II cells) reduces surface tension by disrupting H-bonds; deficiency causes RDS</li>
<li>Compliance = ease of lung expansion; decreased in pulmonary fibrosis</li>
</ul>
</div>
<!-- Multiple Choice Questions have been moved to the practice quiz (practice-quiz.html) -->
<!-- Essay Questions Section -->
<section class="section" style="margin-top: 3rem;">
<h2><span class="section-number">📝</span>Essay Questions for Practice</h2>
<p style="color: var(--text-secondary); margin-bottom: 1.5rem;">Click on any question to reveal the answer. Use these to test your understanding and practice for exams.</p>
<div class="essay-question">
<div class="essay-q-header" onclick="this.parentElement.classList.toggle('show-answer')">
<span class="essay-num">1</span>
<span class="essay-text">Explain the difference between the conducting zone and the respiratory zone. Why is the conducting zone called "anatomical dead space"?</span>
<span class="essay-toggle">+</span>
</div>
<div class="essay-answer">
<div class="answer-label">Answer:</div>
<p>The <strong>conducting zone</strong> includes structures from the nose to the terminal bronchioles—its function is to warm, humidify, and filter air, and conduct it to the respiratory zone. <strong>NO gas exchange occurs here.</strong></p>
<p>The <strong>respiratory zone</strong> includes respiratory bronchioles, alveolar ducts, and alveoli—this is where actual gas exchange with blood occurs.</p>
<p>The conducting zone is called <strong>"anatomical dead space"</strong> (~150 mL) because air in this space doesn't participate in gas exchange. This is clinically important because shallow breathing may only move dead space air, leading to inadequate alveolar ventilation.</p>
</div>
</div>
<div class="essay-question">
<div class="essay-q-header" onclick="this.parentElement.classList.toggle('show-answer')">
<span class="essay-num">2</span>
<span class="essay-text">Using Boyle's Law, explain the sequence of events during inspiration.</span>
<span class="essay-toggle">+</span>
</div>
<div class="essay-answer">
<div class="answer-label">Answer:</div>
<p>Boyle's Law states that at constant temperature, <strong>pressure and volume are inversely related</strong> (P₁V₁ = P₂V₂).</p>
<p><strong>During inspiration:</strong></p>
<ol style="margin-left: 1.5rem; color: var(--text-primary);">
<li>The diaphragm contracts and flattens; external intercostals lift the ribs up and out</li>
<li>This <strong>increases thoracic cavity volume</strong></li>
<li>By Boyle's Law, increased volume causes <strong>decreased pressure</strong>—intra-alveolar pressure drops below atmospheric pressure (about -1 mmHg)</li>
<li>Air flows from high pressure (atmosphere, 760 mmHg) to low pressure (alveoli, 759 mmHg) until pressures equalize</li>