forked from amehime/shoka
-
Notifications
You must be signed in to change notification settings - Fork 0
/
rss.xml
7137 lines (7123 loc) · 806 KB
/
rss.xml
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
<?xml version="1.0"?>
<rss version="2.0">
<channel>
<title>優萌初華</title>
<subtitle>有夢書架</subtitle>
<icon>https://shoka.lostyu.me/images/favicon.ico</icon>
<link>https://shoka.lostyu.me</link>
<author>
<name>Ruri Shimotsuki</name>
</author>
<description>琉璃的医学 & 编程笔记</description>
<language>zh-CN</language>
<pubDate>Sat, 02 Jul 2022 16:54:00 +0800</pubDate>
<lastBuildDate>Sat, 02 Jul 2022 16:54:00 +0800</lastBuildDate>
<category term="学习笔记" />
<category term="医学" />
<category term="编程" />
<category term="计算机科学" />
<category term="医学信息学" />
<category term="YumeShoka" />
<category term="優萌初華" />
<category term="有夢書架" />
<item>
<guid isPermalink="true">https://shoka.lostyu.me/clinical-medicine/cardiovascular/ultrasound/basics/course-8/</guid>
<title>08. Echocardiographic Evaluation of LV Diastolic Function 超声心动图评估左室舒张功能</title>
<link>https://shoka.lostyu.me/clinical-medicine/cardiovascular/ultrasound/basics/course-8/</link>
<category term="临床医学" scheme="https://shoka.lostyu.me/categories/clinical-medicine/" />
<category term="心血管病学" scheme="https://shoka.lostyu.me/categories/clinical-medicine/cardiovascular/" />
<category term="超声心动图" scheme="https://shoka.lostyu.me/categories/clinical-medicine/cardiovascular/%E8%B6%85%E5%A3%B0%E5%BF%83%E5%8A%A8%E5%9B%BE/" />
<category term="第一阶段 Basics" scheme="https://shoka.lostyu.me/categories/clinical-medicine/cardiovascular/%E8%B6%85%E5%A3%B0%E5%BF%83%E5%8A%A8%E5%9B%BE/basics/" />
<pubDate>Sat, 02 Jul 2022 16:54:00 +0800</pubDate>
<description><![CDATA[ <h1 id="defining-diastole-定义舒张期"><a class="anchor" href="#defining-diastole-定义舒张期">#</a> Defining Diastole 定义舒张期</h1>
<dl>
<dt>Diastology 诊断学</dt>
<dd>The science and art of characterising left ventricular relaxation, filling dynamics, and their integration into clinical practice.<br />
描述左心室舒张、充盈动力学及其融入临床实践的科学和艺术。</dd>
</dl>
<h2 id="what-is-diastole"><a class="anchor" href="#what-is-diastole">#</a> What is Diastole</h2>
<p><img data-src="https://s2.loli.net/2022/07/16/dltfCavLYR52OVc.png" alt="" title="Diastolic pressure curves. 舒张压曲线" /></p>
<ul>
<li>
<p>The relationship among LV, LA, and aortic (Ao) pressures and M-mode tracings of the aortic and mitral valve are shown.<br />
显示了 LV、LA 和主动脉(Ao)压力与主动脉瓣和二尖瓣 M 型轨迹之间的关系。</p>
</li>
<li>
<p>Time from aortic valve to mitral valve closure.<br />
从主动脉瓣关闭到二尖瓣关闭的时间,都称为舒张期</p>
</li>
<li>
<p>The isovolumic relaxation time (IVRT) is the interval from aortic valve closure to mitral valve opening. During this interval, LV pressure declines rapidly.<br />
等容舒张时间(IVRT)是从主动脉瓣关闭到二尖瓣打开之间的时间间隔。在此期间,左室压力迅速下降。</p>
</li>
<li>
<p>MV opens when LV pressure &lt; LA pressure<br />
当 LV 压力 &lt; LA 压力时,MV 打开</p>
</li>
<li>
<p>Rapid early filling (E) (~80% OF FILLING)<br />
MV 打开后,左室进行早期的快速充盈 (也就是超声心动图上的 E 波) (约充盈 80%)</p>
</li>
<li>
<p>Diastasis (equalization of pressure b/w atrium and ventricle with little movement of blood)<br />
E 波后续的一段时间为舒张期,此时心室心房压力达到平衡,二尖瓣接近关闭状态,心房和心室间血液流动很少</p>
</li>
<li>
<p>Late diastolic filling 2/2 atrial systole (A) - atrial pressure &gt; vent pressure again, mitral leaflets open again and blood fills LV (20%).<br />
舒张期晚期,充盈 2/2 心房收缩 (就是超声心动图上的 A 波) - 此时心房压力 &gt; 心室压力,二尖瓣叶再次张开,血液充盈左室 (20%)。</p>
</li>
<li>
<p>A rapid rise in LV pressure occurs during the isovolumic contraction time (IVCT), the interval between mitral valve closure and aortic valve opening.<br />
等容收缩时间(IVCT)是从二尖瓣关闭到主动脉瓣打开之间的时间间隔。在此期间,左室压力迅速升高。</p>
</li>
</ul>
<blockquote>
<p>RV diastole is similar to LV but duration is shorter.<br />
RV 舒张期与 LV 相似,但持续时间较短。</p>
</blockquote>
<p><img data-src="https://s2.loli.net/2022/07/16/pId2jiuVHJf8ne5.png" alt="" title="Diastolic filling curves" /></p>
<ul>
<li>
<p>The relationship between LV volume and the diastolic LV Doppler filling pattern is shown.<br />
显示了 LV 体积与舒张期 LV 多普勒充盈模式之间的关系。</p>
</li>
<li>
<p>Early rapid filling coincides with the E velocity, followed by diastasis (with little or no flow from the LA to the LV), and atrial contraction (which coincides with the late diastolic A velocity).<br />
早期快速充盈与 E 峰速度一致,随后是舒张期 (从左房到 LV 的血流很少或没有血流) 和心房收缩 (与舒张期晚期 A 峰一致)。</p>
</li>
<li>
<p>The Doppler velocity curve, in effect, is the first derivative of the LV volume curve.<br />
多普勒速度曲线实际上是左室容量曲线的一阶导数。</p>
</li>
<li>
<p>Ao, Aortic; MV, mitral valve.</p>
</li>
<li>
<p>Ideally, the LV is compliant in diastole to fill from a low LA pressure.<br />
理想情况下,LV 在舒张期具有良好的顺应性,较低的 LA 压力即可使左室充盈。</p>
</li>
<li>
<p>LV is stiff in systole to eject the Stroke volume against systolic BP.<br />
左室在收缩期有一定的硬度,这样可以对抗收缩压进行射血。</p>
</li>
<li>
<p>Abnormal LV diastolic function will lead to increased LV diastolic pressure PCWP &gt; 12(10), LVEDP &gt; 16(12).<br />
当左室舒张功能异常,可导致左室舒张压升高,PCWP &gt; 12(10),LVEDP &gt;16(12)。</p>
</li>
<li>
<p>PCWP: pulmonary capillary wedge pressure 肺毛细血管楔压;LVEDP: 左室舒张末压</p>
</li>
</ul>
<h2 id="factors-influencing-lv-filling-影响左室充盈的因素"><a class="anchor" href="#factors-influencing-lv-filling-影响左室充盈的因素">#</a> Factors influencing LV filling 影响左室充盈的因素</h2>
<ul>
<li>Active LV relaxation e.g asynchrony; ischaemia<br />
主动左室舒张,如不同步、局部缺血</li>
<li>Intrinsic passive LV properties<br />
内在被动因素
<ul>
<li>Myocardial stiffness<br />
心肌僵硬</li>
<li>Myocardial geometry<br />
心肌几何形状</li>
<li>Myocardial wall thickness<br />
心肌壁厚度</li>
</ul>
</li>
<li>Extrinsic passive properties<br />
外在被动因素
<ul>
<li>Pericardial restraint<br />
心包的限制</li>
<li>Extrinsic compression<br />
外部的压缩</li>
<li>Ventricular interaction<br />
心室之间的相互作用</li>
</ul>
</li>
<li>LA filling pressures<br />
左房充盈压
<ul>
<li>LA distensibility<br />
左房膨胀性</li>
<li>LA systole<br />
左房收缩</li>
<li>Mitral Valve disease<br />
二尖瓣疾病</li>
</ul>
</li>
</ul>
<h1 id="diastolic-function-measurements"><a class="anchor" href="#diastolic-function-measurements">#</a> Diastolic Function Measurements</h1>
<h2 id="integrated-approach"><a class="anchor" href="#integrated-approach">#</a> Integrated approach</h2>
<p>并没有单一的方式能全面评估舒张功能,需要多个方法相结合:</p>
<ul>
<li>2D/M Mode 二维 / M 模式
<ul>
<li>LV geometry; 左心室几何形状</li>
<li>LA size;</li>
<li>Annular displacement 瓣环漂移</li>
</ul>
</li>
<li>PW Doppler 脉冲多普勒
<ul>
<li>Mitral filling 二尖瓣血流图</li>
<li>Pulmonary vein inflow 肺静脉血流图</li>
</ul>
</li>
<li>CW Doppler 连续多普勒
<ul>
<li>TR jet to estimate PASP 三尖瓣反流评估肺动脉收缩压</li>
<li>PR jet to estimate PASP 肺动脉瓣反流评估肺动脉收缩压</li>
</ul>
</li>
<li>PW tissue Doppler 组织多普勒
<ul>
<li>Lateral and medial e' velocities 侧壁和室间隔 e’值</li>
</ul>
</li>
<li>Colour flow mapping 彩色血流图
<ul>
<li>Assess flow velocity propagation 血流传播速度</li>
</ul>
</li>
</ul>
<h2 id="2dm-mode"><a class="anchor" href="#2dm-mode">#</a> 2D/M Mode</h2>
<ul>
<li>
<p>Is there LVH?<br />
有没有左室肥厚</p>
</li>
<li>
<p>LV mass index 左室质量指数</p>
</li>
<li>
<p>What is LA Volume? 左房容积</p>
</li>
<li>
<p>Abnormal relaxation reduces rate of posterior wall thinning<br />
松弛功能障碍会降低后壁变薄的速率</p>
</li>
<li>
<p>Diminishes rate of LV enlargement in late diastole<br />
也会降低舒张末期左室扩大的速率</p>
</li>
</ul>
<table>
<thead>
<tr>
<th></th>
<th>正常参考值</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="2">LV mass index</td>
<td>&gt; 115g/m<sup>2</sup> in men</td>
</tr>
<tr>
<td>&gt; 95g/m<sup>2</sup> in women</td>
</tr>
<tr>
<td>LA Volume</td>
<td>&gt; 34ml/m<sup>2</sup></td>
</tr>
</tbody>
</table>
<h3 id="la-volume"><a class="anchor" href="#la-volume">#</a> LA Volume</h3>
<p><img data-src="https://s2.loli.net/2022/07/14/Dk8jtxiSqzGfo3d.jpg" alt="" /></p>
<ul>
<li>
<p>Biplane Methods With Which to Calculate LA Volume.<sup class="footnote-ref"><a href="#fn1" id="fnref1">[1]</a></sup></p>
</li>
<li>
<p>左房容积反应的是一段时间内,充盈压对左房累积的作用</p>
</li>
<li>
<p>Barometer of the chronicity of diastolic dlysfunction.<br />
慢性舒张功能障碍的晴雨表</p>
</li>
<li>
<p>LA volume correlates with risk of cardiovascular events including MI, CVA(cerebrovascular accident), A fib and CHF.<br />
LA 容量与心血管事件风险相关,包括心梗、脑卒中、房颤和慢性心衰等</p>
</li>
<li>
<p>More stable than LV filling pressures.<br />
比 LV 充盈压更稳定。</p>
</li>
</ul>
<h2 id="pw-doppler"><a class="anchor" href="#pw-doppler">#</a> PW Doppler</h2>
<h3 id="transmitral-doppler-inflow-经二尖瓣血流频谱"><a class="anchor" href="#transmitral-doppler-inflow-经二尖瓣血流频谱">#</a> Transmitral Doppler Inflow 经二尖瓣血流频谱</h3>
<p><img data-src="https://s2.loli.net/2022/07/14/l7KTQygcBkzGV4h.jpg" alt="" title="采样位置;与心电图的关系" /></p>
<ul>
<li>Sample at leaflet tips 在瓣叶尖取样
<ul>
<li>Must be precise 必须精确</li>
</ul>
</li>
<li>Sweep speed 50-100mm/s<br />
扫描速度</li>
<li>Correlate with ECG<br />
与心电图相关,E 波在 t 波之后,A 波在 p 波之后</li>
</ul>
<p class="gallery"><img data-src="https://s2.loli.net/2022/07/15/GwbXJjfOTxmLPuq.jpg" alt="" /><br />
<img data-src="https://s2.loli.net/2022/07/16/pfrdP9q7SAc25lK.png" alt="" title="left" /><br />
<img data-src="https://s2.loli.net/2022/07/16/s1DfdEy7A3YMILu.png" alt="" title="right" /><br />
<img data-src="https://s2.loli.net/2022/07/16/AUrwHtkiEGPjVoN.png" alt="" title="Schematic diagram of quantitative measurements that can be made from the Doppler left ventricular filling curve. 可根据多普勒左心室充盈曲线进行定量测量的示意图。" /></p>
<ul>
<li>Normal pattern of left ventricular diastolic filling.<sup class="footnote-ref"><a href="#fn2" id="fnref2">[2]</a></sup><br />
左室舒张充盈正常模式。</li>
<li>Pulsed Doppler recording in an apical four-chamber view with the sample volume positioned at the mitral leaflet tips (left) is used to measure E velocity, A velocity, and the deceleration time (arrow).<br />
在心尖四腔视图中脉冲多普勒记录,并放置取样容积放在二尖瓣叶尖 (左) 用于测量 E 峰速度,A 峰速度和减速时间 (箭头)。</li>
<li>The flow signal recorded with the sample volume positioned at the level of the mitral annulus level (right) is used for measurement of atrial flow duration.<br />
用位于二尖瓣环水平 (右) 的取样容积记录的血流信号用于测量心房血流持续时间。</li>
<li>If transmitral stroke volume is calculated, the annular flow signal is used for the velocity-time integral.<br />
如果计算二尖瓣搏出量,则使用环状血流信号进行速度 - 时间积分。</li>
<li>DFP, Diastolic filling period; DT, deceleration time; IVRT, isovolumic relaxation time; VTI, velocity-time integral.<br />
DFP,舒张充盈期;DT,减速时间;IVRT,等容松弛时间;VTI,速度 - 时间积分。</li>
</ul>
<p><img data-src="https://s2.loli.net/2022/07/14/OBDnv1TY8AeWLzy.png" alt="" title="压力减半时间" /></p>
<ul>
<li>Do not confuse EDT(E wave deceleration time) and PHT(pressure half time)<br />
不要混淆 E 波减速时间和压力减半时间</li>
<li>DT 减速时间,E 波的峰值降到最低点的时间</li>
</ul>
<p><img data-src="https://s2.loli.net/2022/07/14/wLzanexkA4UNB69.png" alt="" title="舒张中期可以看到血流,箭头处提示有速度提高" /></p>
<ul>
<li>Raised mid diastole velocities may Suggest delayed relaxation.<br />
舒张中期速度升高可能表明舒张延迟。</li>
</ul>
<p class="gallery"><img data-src="https://s2.loli.net/2022/07/15/HbjfAvC3FaOi1LV.png" alt="" /><br />
<img data-src="https://s2.loli.net/2022/07/16/shXc9fHNbtOR3EI.png" alt="" title="Isovolumic relaxation time 等容舒张时间" /></p>
<ul>
<li>The isovolumic relaxation time (IVRT) is measured from aortic valve closure and the onset of mitral flow (arrows) and measures 96 ms in this example.<br />
等容舒张时间。主动脉瓣关闭后二尖瓣打开之前,Normal: 70-90 ms.</li>
<li>取样束放置在偏向左室流出道的位置,既可以描述主动脉瓣射血的时间,也可以描述二尖瓣瓣口血流的时间</li>
</ul>
<table>
<thead>
<tr>
<th rowspan="2">Normal PW Measurement</th>
<th colspan="4">Age group (y)</th>
</tr>
<tr>
<th>16-20</th>
<th>21-40</th>
<th>41-60</th>
<th>&gt; 60</th>
</tr>
</thead>
<tbody>
<tr>
<td>
<p>IVRT (ms)<br />
等容舒张时间</p>
</td>
<td>
<p>50 ± 9<br />
(32-68)</p>
</td>
<td>
<p>67 ± 8<br />
(51-83)</p>
</td>
<td>
<p>74 ± 7<br />
(60-88)</p>
</td>
<td>
<p>87 ± 7<br />
(73-101)</p>
</td>
</tr>
<tr>
<td>
<p>E/A ratio<br />
E/A 比率</p>
</td>
<td>
<p>1.88 ± 0.45<br />
(0.98-2.78)</p>
</td>
<td>
<p>1.53 ± 0.40<br />
(0.73-2.33)</p>
</td>
<td>
<p>1.28 ± 0.25<br />
(0.78-1.78)</p>
</td>
<td>
<p>0.96 ± 0.18<br />
(0.6-1.32)</p>
</td>
</tr>
<tr>
<td>
<p>EDT (ms)<br />
E 波减速时间</p>
</td>
<td>
<p>142 ± 19<br />
(104-180)</p>
</td>
<td>
<p>166 ± 14<br />
(138-194)</p>
</td>
<td>
<p>181 ± 19<br />
(143-219)</p>
</td>
<td>
<p>200 ± 29<br />
(142-258)</p>
</td>
</tr>
<tr>
<td>
<p>A duration (ms)<br />
A 波持续时间</p>
</td>
<td>
<p>113 ± 17<br />
(79-147)</p>
</td>
<td>
<p>127 ± 13<br />
(101-153)</p>
</td>
<td>
<p>133 ± 13<br />
(107-159)</p>
</td>
<td>
<p>138 ± 19<br />
(100-176)</p>
</td>
</tr>
</tbody>
</table>
<p class="gallery"><img data-src="https://s2.loli.net/2022/07/14/UCAZYeRrpxQ8VJ3.jpg" alt="" /><br />
<img data-src="https://s2.loli.net/2022/07/15/l89jn7AwtzXpMqT.jpg" alt="" /></p>
<table>
<thead>
<tr>
<th rowspan="2"></th>
<th rowspan="2">
<p>Normal<br />
正常情况</p>
</th>
<th rowspan="2">
<p>Abnormal relaxation<br />
松弛功能障碍</p>
</th>
<th rowspan="2">
<p>Pseudo-normal filling pattern(PNF)<br />
假性正常化充盈</p>
</th>
<th colspan="2">
<p>Restrictive filling pattern<br />
限制性充盈</p>
</th>
</tr>
<tr>
<th>reversible 可逆</th>
<th>irreversible 不可逆</th>
</tr>
</thead>
<tbody>
<tr>
<td>E/A ratio</td>
<td>1-2</td>
<td>< 0.8</td>
<td rowspan="3">E/A 或 DT 很难与正常相区分,需要结合其他指标来区分舒张期功能。比如组织多普勒的 e' 出现降低,E/e' 升高到>15 的不正常值。</td>
<td colspan="2">> 2,在 E/A 比率上有所区分,不可逆的 E/A 远大于 2</td>
</tr>
<tr>
<td>DT(ms)</td>
<td>150-200</td>
<td>> 200, 延长</td>
<td colspan="2">< 160, 缩短</td>
</tr>
<tr>
<td>IVRT(ms)</td>
<td>50-100</td>
<td>> 100, 延迟</td>
<td colspan="2">< 80, 缩短</td>
</tr>
</tbody>
</table>
<blockquote>
<p>所有舒张功能受损的患者,都会导致左房压力增高</p>
</blockquote>
<h3 id="pulmonary-venous-doppler-flow-肺静脉血流频谱图"><a class="anchor" href="#pulmonary-venous-doppler-flow-肺静脉血流频谱图">#</a> Pulmonary Venous Doppler Flow 肺静脉血流频谱图</h3>
<p class="gallery"><img data-src="https://s2.loli.net/2022/07/15/SD2QlYi3VPJoyMK.jpg" alt="" /><br />
<img data-src="https://s2.loli.net/2022/07/15/HnZq9RT1Q6veN8X.jpg" alt="" /></p>
<ul>
<li>可以反应左室的舒张功能,心尖四腔,取样容积放在肺静脉 0.5-1cm 进行频谱图描绘<sup class="footnote-ref"><a href="#fn3" id="fnref3">[3]</a></sup></li>
</ul>
<table>
<thead>
<tr>
<th colspan="4">4 phase</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="2">S wave</td>
<td rowspan="2">收缩期</td>
<td>LA relaxation</td>
<td>左房舒张</td>
</tr>
<tr>
<td>LV annulus displacement</td>
<td>左室瓣环移位</td>
</tr>
<tr>
<td>D wave</td>
<td>舒张期前向血流</td>
<td>Ventricular relaxation</td>
<td>心室舒张</td>
</tr>
<tr>
<td>Ar wave</td>
<td>舒张期晚期逆向血流</td>
<td>Atrial contraction</td>
<td>心房收缩</td>
</tr>
</tbody>
</table>
<ul>
<li>Main measurements
<ul>
<li>S velocity<br />
S 波速度</li>
<li>D velocity<br />
D 波速度</li>
<li>S/D ratio<br />
S/D 比率</li>
<li>Ar Velocity<br />
Ar 波返流速度<br />
有时写为 a 波,以和二尖瓣血流频谱的 A 波区分</li>
</ul>
</li>
</ul>
<table>
<thead>
<tr>
<th colspan="3">Measurement</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="2">S/D ratio</td>
<td>Normally</td>
<td>&gt; 1</td>
</tr>
<tr>
<td>
<p>With raised LVEDP becomes<br />
LVEDP 升高时</p>
</td>
<td>
<p>&lt; 1</p>
</td>
</tr>
<tr>
<td rowspan="2">Ar Velocity</td>
<td>As LVEDP size and duration will increase (cf A wave duration with DECREASE)</td>
</tr>
<tr>
<td>
<p>当左室舒张末压升高时,Ar 的流速和持续时间都会增加 (而 A 波持续时间则减少)<br />
When time difference between duration of A wave and Ar is &gt; 30ms significantly raised LVEDP.<br />
当 Ar 持续时间>30ms 时,提示左室舒张末压显著升高。</p>
</td>
</tr>
</tbody>
</table>
<ul>
<li>
<p>Careful with influencing factors on PV flow 注意以下影响因素</p>
<ul>
<li>Advanced age 高龄
<ul>
<li>Age will increase S/D ratio; Ar max and Ar duration<br />
年龄会增加 S/D 比率;Ar max 和 Ar 持续时间</li>
</ul>
</li>
<li>Tachycardia (SD fusion) 心动过速(SD 融合)</li>
<li>First degree AV block I 度房室传导阻滞</li>
<li>MR 二尖瓣反流</li>
<li>Raise Preload with increase S 增加的前负荷</li>
<li>LV systolic dysfunction 左室收缩功能障碍</li>
</ul>
</li>
<li>
<p>Pulm vein flow velocity Tips/Tricks 测量技巧</p>
<ul>
<li>Use sweep speeds of 100mm/s 扫描速度</li>
<li>Perform with apnoea 呼吸暂停</li>
<li>MR may annul or even reverse S velocity<br />
二尖瓣反流可以抵消甚至反转 S 速度
<ul>
<li>Hence do not use if there is significant MR<br />
因此,如果有明显的 MR,请不要测量</li>
</ul>
</li>
<li>Do not use immediately after AF DCCV(direct current cardioversion) due to atrial stunning<br />
由于心房顿抑,不要在房颤直流电复律后立即测量</li>
<li>Be wary of relative degrees of pulm vein stenosis if the patient has had a RF(radiofrequency) AF ablation in past.<br />
如果患者过去做过房颤射频消融术,要注意肺静脉狭窄的相对程度。</li>
</ul>
</li>
</ul>
<h2 id="tissue-doppler-imaging-e-组织多普勒"><a class="anchor" href="#tissue-doppler-imaging-e-组织多普勒">#</a> Tissue Doppler Imaging (e') 组织多普勒</h2>
<p class="gallery"><img data-src="https://s2.loli.net/2022/07/15/J4NdecLGuVPlhnj.jpg" alt="" /><br />
<img data-src="https://s2.loli.net/2022/07/15/S2Z9TD3HutcAxlQ.jpg" alt="" /></p>
<ul>
<li>
<p>心尖四腔,取样线放置在二尖瓣瓣环处,进行瓣环运动速度的描绘</p>
</li>
<li>
<p>可以得到</p>
<ul>
<li>收缩期 s' 波</li>
<li>舒张早期 E' 波,与经二尖瓣血流频谱图中的 E 波出现时相一样,在 t 波之后</li>
<li>舒张晚期 A' 波,出现在 p 波之后</li>
</ul>
</li>
<li>
<p>E/e' ratio (combo of transmitral flow velocity and annular velocity) is best parameter for predicting mean LVEDP (&lt; 8 nl, &gt; 15 abnl); but cannot be used in isolation!<br />
E/e' 比率 (跨二尖瓣血流速度和二尖瓣环运动速度的组合) 是预测平均左室舒张末压 (&lt;8nL,&gt;15abnl) 的最佳参数,但不能单独使用!</p>
</li>
<li>
<p>This is the best correlate with NORMAL LVEF and no mitral annular issue.<br />
射血分数正常以及无二尖瓣瓣环问题时,E/e' 比率有很好的相关性</p>
</li>
</ul>
<table>
<thead>
<tr>
<th colspan="3">Measurement</th>
</tr>
</thead>
<tbody>
<tr>
<td rowspan="2">E/e' ratio</td>
<td>normal</td>
<td>&lt; 8</td>
</tr>
<tr>
<td>abnormal</td>
<td>&gt; 15</td>
</tr>
</tbody>
</table>
<ul>
<li>Tips with TDI 注意事项
<ul>
<li>Mitral annular calcification or a mitral annular ring will reduce velocities<br />
二尖瓣环钙化或二尖瓣环植入,会减慢运动速度,减低 e' 值</li>
<li>Reduced LVEF, especially local infarction will lead to inaccurate assessment<br />
左室射血分数降低,尤其是取样线处有局部梗死,将导致评估不准确</li>
<li>e' will be increased with significant degrees of primary MR<br />
e' 在显著的原发性二尖瓣反流时出现增高</li>
<li>Reduced e' is consistent across all degrees of diastolic dysfunction and is an early marker; however also a normal part of ageing.<br />
所有程度的舒张功能障碍中 e' 都是降低的,因此 e' 的下降可作为舒张功能障碍的早期标志;但随着年龄的增长,e' 也会出现下降。</li>
</ul>
</li>
</ul>
<h2 id="mitral-inflow-propagation-velocity-vp-二尖瓣血流传播速度"><a class="anchor" href="#mitral-inflow-propagation-velocity-vp-二尖瓣血流传播速度">#</a> Mitral inflow Propagation Velocity (Vp) 二尖瓣血流传播速度</h2>
<p class="gallery"><img data-src="https://s2.loli.net/2022/07/15/D91AVf7pvgyxi3l.png" alt="" /><br />
<img data-src="https://s2.loli.net/2022/07/16/yUBWvlnu93r8SqC.png" alt="" title="Color Doppler M-mode propagation velocity 彩色多普勒M模式传播速度" /></p>
<ul>
<li>
<p>Propagation velocity (dashed line) recorded with the color Doppler M-mode cursor positioned in the center of the mitral annulus in an apical four-chamber view.<br />
在心尖四腔切面下,用位于二尖瓣环中央的彩色多普勒 M 型光标记录传播速度 (虚线)。</p>
</li>
<li>
<p>The slope of the Doppler flow as it moves from the annulus (bottom of scale) to the apex (top of the scale) reflects the rate of LV relaxation.<br />
当多普勒血流从环部 (标尺底部) 移动到心尖 (标尺顶部) 时,其斜率反映了左室舒张的速度。</p>
</li>
<li>
<p>Colour M mode 100mm/s 彩色 M 模式</p>
</li>
<li>
<p>Shift colour flow baseline down so highest velocity is blue.<br />
将彩色血流基线向下移动(低于奈奎斯特极限),使最高流速为蓝色,并描绘,得到斜率来反映血流传播速度</p>
</li>
<li>
<p>Slope relates to relaxation<br />
斜率与松弛有关</p>
</li>
<li>
<p>临床非常规,了解</p>
</li>
</ul>
<table>
<thead>
<tr>
<th colspan="3">Measurement</th>
</tr>
</thead>
<tbody>
<tr>
<td>Vp</td>
<td>&gt; 55cm/s</td>
<td>normal</td>
</tr>
<tr>
<td>E/Vp</td>
<td>&gt; 2.5</td>
<td>correlates with raised LVEDP 左室舒张末压升高</td>
</tr>
</tbody>
</table>
<h2 id="global-strain-rate-整体应变率"><a class="anchor" href="#global-strain-rate-整体应变率">#</a> Global strain rate 整体应变率</h2>
<p><img data-src="https://s2.loli.net/2022/07/15/OaSLiW9DnvzuCgo.jpg" alt="" /></p>
<ul>
<li>也可以用左室舒张功能的评估</li>
<li>了解<sup class="footnote-ref"><a href="#fn4" id="fnref4">[4]</a></sup></li>
</ul>
<h1 id="diastolic-function-grades"><a class="anchor" href="#diastolic-function-grades">#</a> Diastolic Function Grades</h1>
<table>
<tbody>
<tr>
<td>Decel Time</td>
<td colspan="2">140-250ms</td>
</tr>
<tr>
<td>E/e'</td>
<td>&lt; 8</td>
<td>normal</td>
</tr>
<tr>
<td>E/e'</td>
<td>&gt; 15</td>
<td>LVEDP &gt; 18mmHg</td>
</tr>
</tbody>
</table>
<p><img data-src="https://s2.loli.net/2022/07/15/sS4jhUgm2xc3EoF.jpg" alt="" /></p>
<ul>
<li>I: impaired relaxation 松弛受损</li>
<li>II: moderate diastolic dysfunction (pseudonormal) 中度舒张功能障碍(假性正常)</li>
<li>III: restrictive left ventricular filling (impaired LV compliance) 限制性左心室充盈(LV 顺应性受损)</li>
<li>ECG: electrocardiogram, MI: mitral inflow, MA: mitral annular velocities, PVF: pulmonary venous flow, Vp: velocity of flow progression, LA: left atrium, PASP: pulmonary artery systolic pressure<br />
ECG:心电图,MI:二尖瓣流入,MA:二尖瓣环速度,PVF:肺静脉流量,Vp:速度流动进展,LA:左心房,PASP:肺动脉收缩压。</li>
</ul>
<p><img data-src="https://s2.loli.net/2022/07/16/lI5gDpqT4jZA1t6.png" alt="" /></p>
<ul>
<li>Stages of diastolic function. 舒张功能的阶段。
<ul>
<li>Schematic representation of the typical patterns seen with mitral inflow, pulmonary venous flow, tissue Doppler echocardiography, and color M-mode propagation velocity (Vp) for normal (young and adult), impaired relaxation, pseudonormal, and restrictive diastolic function.</li>
<li>The stages of diastolic dysfunction can be determined using an integrated approach with these four different modalities for assessment of diastolic flow pattern.</li>
<li>A, Late mitral filling;</li>
<li>A′, tissue Doppler atrial velocity;</li>
<li>Ar, pulmonary vein atrial reversal velocity;</li>
<li>Ardur, duration of pulmonary vein Ar;</li>
<li>D, pulmonary vein diastolic filling;</li>
<li>E, early mitral filling;</li>
<li>E′, tissue Doppler early diastolic velocity;</li>
<li>S, pulmonary vein systolic filling;</li>
<li>S′, tissue Doppler systolic velocity;</li>
<li>Vp, propagation velocity.</li>
</ul>
</li>
</ul>
<p><img data-src="https://s2.loli.net/2022/07/16/9KEeFRjnSduo4PL.jpg" alt="" /></p>
<ul>
<li>Doppler findings in patients with normal diastolic function and with mild, moderate, and severe diastolic dysfunction. 舒张功能正常以及轻度、中度和重度舒张功能障碍患者的多普勒表现。</li>
<li>The top row shows LV inflow with early (E) and atrial (A) phases of diastolic filling, the second row from the top shows tissue Doppler imaging recorded at the septal side of the mitral annulus with the myocardial early (E′) and atrial (A′) velocities and the expected ratio of (E/E′), the third row from the top shows the isovolumic relaxation time (IVRT), and the bottom row shows the pulmonary venous inflow pattern with systolic (S) and diastolic (D) antegrade flow and the pulmonary vein atrial (PVa) reversal of flow.<br />
第一排显示二尖瓣环左室流出道的舒张期充盈早期 (E) 和心房 (A) 相,倒数第二排显示二尖瓣环间隔侧心肌早期 (E‘) 和心房 (A’) 的血流速度和预期的比值 (E/E‘),倒数第三排显示等容舒张期 (IVRT),最下面一排显示肺静脉流入模式,收缩期 (S) 和舒张期 (D) 顺行血流,肺静脉 (PVA) 血流逆转。</li>
</ul>
<h2 id="approch-to-the-patient-患者评估"><a class="anchor" href="#approch-to-the-patient-患者评估">#</a> Approch to the Patient 患者评估</h2>
<p><img data-src="https://s2.loli.net/2022/07/16/eA36NMvfSi4rdhY.png" alt="" title="Practical approach to clinical evaluation of diastolic dysfunction 临床评价舒张功能障碍的实用方法" /></p>
<ul>
<li>
<p>When LV size, wall thickness, and ejection fraction (EF) are normal, further evaluation of diastolic function is needed only in the presence of LA enlargement or an abnormal E/A ratio for age.<br />
当 LV 大小,壁厚和射血分数 (EF) 正常时,仅在 LA 增大或年龄 E/A 比率异常的情况下,才需要进一步评估舒张功能。</p>
</li>
<li>
<p>In patients with ventricular hypertrophy or dilation with a normal ejection fraction, diastolic function should be fully evaluated, particularly if clinical concern exists that diastolic dysfunction is the cause of symptoms.<br />
对于射血分数正常的心室肥大或扩张患者,应全面评估舒张功能,尤其是当临床关注舒张功能障碍是症状的原因时。</p>
</li>
<li>
<p>When ejection fraction is reduced, the first step is to evaluate for elevated filling pressures.<br />
当射血分数降低时,第一步是评估是否有较高的充盈压力。</p>
</li>
<li>
<p>If simple criteria for elevated filling pressures are not present, a more complete evaluation of diastolic function is appropriate.<br />
如果不符合充盈压力升高的简单标准,则应对舒张期功能进行更全面的评估。</p>
</li>
<li>
<p>DT, Deceleration time; IVRT, isovolumic relaxation time; LVH, LV hypertrophy; PVD, peak diastolic velocity; PVS, peak systolic velocity.</p>
</li>
<li>
<p>根据左室的大小、室壁厚度和 EF 值进行不同的评估</p>
</li>
<li>
<p>二尖瓣的血流频谱图和组织多普勒是必须描绘的,尽量区分舒张功能障碍的严重程度</p>
</li>
<li>
<p>如果血流频谱和组织多普勒无法评估,可以加用 IVRT 和 肺静脉血流频谱</p>
</li>
</ul>
<h2 id="presence-and-severity-of-diastolic-dysfunction"><a class="anchor" href="#presence-and-severity-of-diastolic-dysfunction">#</a> Presence and severity of diastolic dysfunction</h2>
<table>
<thead>
<tr>
<th></th>
<th>Normal</th>
<th>Mild (Grade I)</th>
<th>Moderate (Grade II)</th>
<th>Severe* (Grade III)</th>
</tr>
</thead>
<tbody>
<tr>
<td>Pathophysiology</td>
<td></td>
<td>↓Relaxation and normal LVEDP</td>
<td>↓Relaxation and ↑LVEDP</td>
<td>↓Compliance and ↑↑LVEDP</td>
</tr>
<tr>
<td>E/A ratio</td>
<td>≥ 0.8</td>
<td>< 0.8</td>
<td>> 0.8 to <2.O</td>
<td>≥ 2.0</td>
</tr>
<tr>
<td>Valsalva △E/A</td>
<td></td>
<td>< 0.5</td>
<td>≥ 0.5</td>
<td>≥ 0.5</td>
</tr>
<tr>
<td>DT (ms)</td>
<td>150-200</td>
<td>> 200</td>
<td>150-200</td>
<td>< 150</td>
</tr>
<tr>
<td>E’ velocity (cm/s)</td>
<td>≤ 10</td>
<td>< 8</td>
<td>< 8</td>
<td>< 5</td>
</tr>
<tr>
<td>E/E’ ratio</td>
<td>≤ 10</td>
<td>≤ 10</td>
<td>10-14</td>
<td>> 14</td>
</tr>
<tr>
<td>IVRT (ms)</td>
<td>50-100</td>
<td>≥ 100</td>
<td>60-100</td>
<td>≤ 60</td>
</tr>
<tr>
<td>PV S/D</td>
<td>≈1</td>
<td>S > D</td>
<td>S < D</td>
<td>S ≪ D</td>
</tr>
<tr>
<td>PVₐ(m/s)</td>
<td>< 0.35</td>
<td>< 0.35</td>
<td>≥ 0.35</td>
<td>≥ 0.35</td>
</tr>
<tr>
<td>a_dur_ - A_dur_ (ms)</td>
<td>< 20</td>
<td>< 20</td>
<td>≥ 30</td>
<td>≥ 30</td>
</tr>
<tr>
<td>LA volume index</td>
<td>< 34 mL/m<sup>2</sup></td>
<td>Mildly enlarged</td>
<td>Moderately enlarged</td>
<td>Severely enlarged</td>
</tr>
</tbody>
</table>
<p><img data-src="https://s2.loli.net/2022/07/16/QIZCMfnNp3VdJHr.png" alt="" /></p>
<h2 id="assessment-of-lvedp"><a class="anchor" href="#assessment-of-lvedp">#</a> Assessment of LVEDP</h2>
<p>在左室舒张末压升高的情况下,各指标的参考值</p>
<table>
<thead>
<tr>
<th>LA</th>
<th>E/A</th>
<th>EDT</th>
<th>Ar</th>
<th>Ar dur - A dur</th>
<th>S/D</th>
<th>DDT</th>
<th>E/e'</th>
<th>E/Vp</th>
</tr>
</thead>
<tbody>
<tr>
<td>↑</td>
<td>>2</td>
<td>< 150ms</td>
<td>> 0.35 m/s</td>
<td>>30 ms</td>
<td>S < D</td>
<td><175 ms</td>
<td>> 15</td>
<td>>2</td>
</tr>
</tbody>
</table>
<hr class="footnotes-sep" />
<section class="footnotes">
<ol class="footnotes-list">
<li id="fn1" class="footnote-item"><p>Lester, S. J. et al. Unlocking the mysteries of diastolic function: deciphering the Rosetta Stone 10 years later. J Am Coll Cardiol 51, 679–689 (2008). <a href="#fnref1" class="footnote-backref">↩︎</a></p>
</li>
<li id="fn2" class="footnote-item"><p>Catherine M. Otto MD. Textbook of Clinical Echocardiography <a href="#fnref2" class="footnote-backref">↩︎</a></p>
</li>
<li id="fn3" class="footnote-item"><p><span class="exturl" data-url="aHR0cHM6Ly9lY2hvYmFzaWNzLmRlL2RpYXN0b2xlLWVuLmh0bWw=">https://echobasics.de/diastole-en.html</span> <a href="#fnref3" class="footnote-backref">↩︎</a></p>
</li>
<li id="fn4" class="footnote-item"><p>Wang, J., Khoury, D. S., Thohan, V., Torre-Amione, G. &amp; Nagueh, S. F. Global diastolic strain rate for the assessment of left ventricular relaxation and filling pressures. Circulation 115, 1376–1383 (2007). <a href="#fnref4" class="footnote-backref">↩︎</a></p>
</li>
</ol>
</section>
]]></description>
</item>
<item>
<guid isPermalink="true">https://shoka.lostyu.me/clinical-medicine/cardiovascular/ultrasound/basics/course-7/</guid>
<title>07. Echocardiographic Measurement of LV Systolic Dysfunction 超声心动图测量左室收缩功能不全</title>
<link>https://shoka.lostyu.me/clinical-medicine/cardiovascular/ultrasound/basics/course-7/</link>
<category term="临床医学" scheme="https://shoka.lostyu.me/categories/clinical-medicine/" />
<category term="心血管病学" scheme="https://shoka.lostyu.me/categories/clinical-medicine/cardiovascular/" />
<category term="超声心动图" scheme="https://shoka.lostyu.me/categories/clinical-medicine/cardiovascular/%E8%B6%85%E5%A3%B0%E5%BF%83%E5%8A%A8%E5%9B%BE/" />
<category term="第一阶段 Basics" scheme="https://shoka.lostyu.me/categories/clinical-medicine/cardiovascular/%E8%B6%85%E5%A3%B0%E5%BF%83%E5%8A%A8%E5%9B%BE/basics/" />
<pubDate>Sat, 02 Jul 2022 15:12:00 +0800</pubDate>
<description><![CDATA[ <h1 id="echocardiography-measure-lv-function"><a class="anchor" href="#echocardiography-measure-lv-function">#</a> Echocardiography measure LV function</h1>
<h2 id="advantages"><a class="anchor" href="#advantages">#</a> Advantages</h2>
<ul>
<li>Direct imaging = possible to make visual rather than mathematical assessment<br />
直接成像 = 可以进行视觉评估而不是数学评估</li>
<li>Relatively inexpensive equipment<br />
相对便宜</li>
<li>Fairly quick to perform and to analyse<br />
相当快地执行和分析</li>
<li>Not distressing to the patient<br />
不会让病人感到痛苦</li>
<li>No need to use radiation.<br />
没有辐射</li>
</ul>
<h2 id="disadvantages"><a class="anchor" href="#disadvantages">#</a> Disadvantages</h2>
<ul>
<li>Operator dependent<br />
依赖于操作人员</li>
<li>Poor image quality makes measurements difficult<br />
图像质量差导致测量困难</li>
<li>COPD, obesity<br />
慢阻肺和肥胖</li>
<li>LV wall motion abnormalities affect accuracy<br />
左室壁运动异常影响准确性</li>
<li>Prior myocardial infarction, cardiomyopathy.<br />
既往心肌梗死、心肌病</li>
</ul>
<h2 id="requirements"><a class="anchor" href="#requirements">#</a> Requirements</h2>
<ul>
<li>Good Long Axis, 4 Chamber and 2 Chamber views<br />
良好的长轴、四腔观和两腔观</li>
<li>Patience 耐心,需要多次尝试,配合患者呼吸等</li>
<li>If you cannot take the images, the technology will fail.<br />
如果无法采集到图像,则检查将失败。</li>
</ul>
<h2 id="the-four-basic-views"><a class="anchor" href="#the-four-basic-views">#</a> The four basic views</h2>
<p><img data-src="https://s2.loli.net/2022/07/12/qUSZHtfLByeYXCN.jpg" alt="" /></p>
<ul>
<li>LAX
<ul>
<li>室间隔和左室的下侧壁要处于水平状态</li>
</ul>
</li>
<li>SAX
<ul>
<li>心室要呈正圆形</li>
</ul>
</li>
<li>4C 和 2C
<ul>
<li>要显示到心尖的部分</li>
<li>室间隔、房间隔与瓣环水平呈十字交叉</li>
</ul>
</li>
<li>2C
<ul>
<li>要避免右室出现,否则角度不对</li>
</ul>
</li>
</ul>
<p class="gallery"><img data-src="https://s2.loli.net/2022/07/12/xUc9zuE3Gt5mhLf.png" alt="" title="LAX:室间隔指向了十点钟的方向,而非呈水平状态即 9 点钟方向" /><br />
<img data-src="https://s2.loli.net/2022/07/12/IgXxAGqfhV4rYC8.png" alt="" title="SAX:从 LAX 旋转探头 90°得到,需要调成探头的角度,使得成像呈比较完美的圆形,而非椭圆,否则必定会存在测量误差。乳头肌水平,左侧为后内侧乳头肌,右侧为前外侧乳头肌。进行左室缩短分数、射血分数都是在乳头肌水平进行测量" /><br />
<img data-src="https://s2.loli.net/2022/07/12/gD65Ev4zuVKtsMp.png" alt="" title="4C:室间隔和屏幕有点成角,这虽然是合理的,但不是完美的成像;应该让心脏、室间隔尽与屏幕可能呈垂直,呈 12-6 点的状态,而没有角度。此时可以将探头朝患者右侧进行移动而改善成像;箭头所指的为右心室内的隔缘肉柱。" /><br />
<img data-src="https://s2.loli.net/2022/07/12/tIBalO1TZY9dWxg.png" alt="" title="2C:心尖一般指向左侧,可以适当向下微调探头,看能不能更好的观察到心尖部。图中,左室的左侧是左室下壁,右侧是左室前壁" /></p>
<h1 id="methods-for-global-lv-dysfunction-评价整体的左室功能障碍"><a class="anchor" href="#methods-for-global-lv-dysfunction-评价整体的左室功能障碍">#</a> Methods for global LV dysfunction 评价整体的左室功能障碍</h1>
<ul>
<li>Linear measurements 线性测量
<ul>
<li>e.g M-mode echocardiography</li>
</ul>
</li>
<li>2-D measurements
<ul>
<li>Fractional shortening</li>
<li>Simpson's rule</li>
</ul>
</li>
<li>Doppler measurements
<ul>
<li>Tei Index</li>
</ul>
</li>
<li>Emerging (for a long time!) measurements</li>
</ul>
<h2 id="linear-measurements-线性测量"><a class="anchor" href="#linear-measurements-线性测量">#</a> Linear measurements 线性测量</h2>
<ul>
<li>M-mode echocardiography<br />
有较高的可重复性</li>
<li><strong>Significant limitation</strong>: The beam frequently traverses the LV in a tangential manner. It often overestimates the true dimension.<br />