from this pdf extract these topics in details for my exam and also keep your explanation - mucle contraction
cd /tmp/workspace/attachments/38630c8a-1878-4eb2-bb55-359a7c4facc5/ && python3 -c " import pdfplumber with pdfplumber.open('physiology.pdf') as pdf: print(f'Total pages: {len(pdf.pages)}') # Print first page to understand structure text = pdf.pages[0].extract_text() print('--- PAGE 1 ---') print(text[:3000]) "
python3 -c " import pdfplumber with pdfplumber.open('/tmp/workspace/attachments/38630c8a-1878-4eb2-bb55-359a7c4facc5/physiology.pdf') as pdf: full_text = '' for i, page in enumerate(pdf.pages): t = page.extract_text() if t: full_text += f'\n\n=== PAGE {i+1} ===\n' + t print(full_text[:8000]) "
python3 -c " import pdfplumber with pdfplumber.open('/tmp/workspace/attachments/38630c8a-1878-4eb2-bb55-359a7c4facc5/physiology.pdf') as pdf: full_text = '' for i, page in enumerate(pdf.pages): t = page.extract_text() if t: full_text += f'\n\n=== PAGE {i+1} ===\n' + t # Search for muscle contraction sections lower = full_text.lower() idx = lower.find('muscle contraction') print(f'First occurrence of muscle contraction at index: {idx}') # Print surrounding pages print(full_text[8000:20000]) "
python3 -c " import pdfplumber with pdfplumber.open('/tmp/workspace/attachments/38630c8a-1878-4eb2-bb55-359a7c4facc5/physiology.pdf') as pdf: full_text = '' for i, page in enumerate(pdf.pages): t = page.extract_text() if t: full_text += f'\n\n=== PAGE {i+1} ===\n' + t print(full_text[20000:37000]) "
python3 -c " import pdfplumber with pdfplumber.open('/tmp/workspace/attachments/38630c8a-1878-4eb2-bb55-359a7c4facc5/physiology.pdf') as pdf: full_text = '' for i, page in enumerate(pdf.pages): t = page.extract_text() if t: full_text += f'\n\n=== PAGE {i+1} ===\n' + t print(full_text[37000:55000]) "
python3 -c " import pdfplumber with pdfplumber.open('/tmp/workspace/attachments/38630c8a-1878-4eb2-bb55-359a7c4facc5/physiology.pdf') as pdf: full_text = '' for i, page in enumerate(pdf.pages): t = page.extract_text() if t: full_text += f'\n\n=== PAGE {i+1} ===\n' + t print(full_text[55000:]) "
Exam key: Troponin C is the calcium sensor. When Ca²⁺ binds to it, the whole troponin-tropomyosin complex shifts, uncovering the active site on actin.
| Band/Zone | Change During Contraction |
|---|---|
| Sarcomere length | Decreases (Z lines come closer) |
| 'I' band | Decreases |
| 'H' zone | Decreases or disappears |
| 'A' band | No change (myosin length unchanged) |
Memory tip: Only the 'A' band stays the same. Everything else shortens!
Important: Relaxation is an active process (needs ATP to pump Ca²⁺ back). Physical relaxation appears passive, but the chemical process is active.
| Pathway | ATP Produced |
|---|---|
| Glycolysis | 2 |
| Krebs cycle | 2 |
| Hydrogen oxidation (34H via oxidative phosphorylation) | 34 |
| Total | 38 ATP |
| Phase | Event |
|---|---|
| Latent period | No electrical change; 0.5-1 ms |
| Depolarization | Na⁺ channels open → Na⁺ floods in → inside becomes positive (up to +55 mV = overshoot) |
| Repolarization | K⁺ channels open → K⁺ flows out → inside returns negative |
| After hyperpolarization | K⁺ channels stay open too long → goes more negative than resting; then slowly returns to -90 mV |
| Type | Description |
|---|---|
| Resting heat | Heat produced at rest due to basal metabolism |
| Initial heat | Heat during activity: includes (i) heat of activation - Ca²⁺ release from L-tubules; (ii) heat of shortening - cross-bridge movement; (iii) heat of relaxation - ATP breakdown during relaxation |
| Recovery heat | Heat after contraction; from resynthesis of chemical substances |
| Parameter | Value |
|---|---|
| Resting membrane potential (skeletal) | -90 mV |
| Overshoot (action potential) | +55 mV |
| Endplate potential | -60 mV |
| Miniature EPP amplitude | 0.5 mV |
| Latent period (simple twitch) | 0.01 sec |
| Contraction period | 0.04 sec |
| Relaxation period | 0.05 sec |
| Total twitch period | 0.10 sec |
| Refractory period (skeletal) | 0.01 sec |
| Refractory period (cardiac) | ~0.53 sec |
| ATP from 1 glycogen molecule | 38 molecules |
| ACh molecules per vesicle | ~10,000 |
| Vesicles released per impulse | ~300 |
| ACh destruction time | ~1 ms |