MRI Birdcage-Type Coil at 64 MHz

2023-11-28 22:50
文章标签 type 64 mri mhz birdcage coil

本文主要是介绍MRI Birdcage-Type Coil at 64 MHz,希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!

【转自http://www.remcom.com/examples/mri-birdcage-type-coil-at-64-mhz.html】

A conventional birdcage coil that operates at 64 MHz (1.5 T) is simulated using XFdtd Release 7 and the ability to analyze the B1 field due to the loading of a human head is demonstrated. The coil geometry is taken from the paper “Effects of End-Ring/Shield Configuration on Homogeneity and Signal-to-Noise Ratio in a Birdcage-Type Coil Loaded With a Human Head” [1]. 

As described in the paper, the coil is a 16-rung, low-pass birdcage coil with a 27 cm diameter, 22 cm length, and a shield diameter of 34 cm, shown in Figure 1. This example will consider only the conventional configuration from the paper since the other configurations are readily constructed with slight modifications to this basic design. The model is meshed with a 2 mm base cell size and Remcom’s XACT Accurate Cell Technology is enabled on all parts of the coil. Figure 2 shows the XACT representation of the FDTD mesh for a portion of the coil. A 2 mm cell size is chosen because a high resolution human body model will be loaded into the coil.                  

Figure 1CAD representation of the conventional birdcage coil.               Figure 2XACT mesh representation for a portion of the coil
.

At each rung of the birdcage, a gap exists for a circuit component. Following the convention of the paper, a phased voltage source is added to each rung with the phase matching the angular position of the rung in the geometry. Sensors are set to save the steady-state B1 fields in two planes of the geometry and the simulation is executed with a 64 MHz sine wave as the source signal. 

Following the first simulation, with an unloaded coil, the |B1+| and B fields are displayed as shown in Figures 3 and 4 respectively. For all figures displaying fields, the input power to the coil has been adjusted to 1 W and the scale bar has been set to better visualize the fields in the center of the plane.

          

                                   Figure 3  |B1+| on the axial plane in the unloaded coil.                                 Figure 4 B on the sagittal plane in the unloaded coil.


A 2 mm model of the Visible Human Head, extracted by Varipose, is then used to load the birdcage, as shown in the 3D view of Figure 5. Axial and sagittal planar views of the mesh can be found in Figures 6 and 7.

    

Figure 5 Coil loaded with human head.   Figure 6 2 mm mesh representation on the axial plane of the loaded coil.Figure 7 2 mm mesh representation on the sagittal plane of the loaded coil.


Following a second simulation, with a loaded coil, the |B1+| and B fields through the loaded coil are shown in Figure 8 and 9 respectively. As expected, the introduction of the human head disrupts the |B1+| fields. The paper performs a similar analysis for three other end-ring/shield configurations and finds the conventional configuration provides the most homogeneity for an unloaded coil, but the least homogeneity when loaded.

   

Figure 8 |B1+| on the axial plane of the loaded coil.                               Figure 9B on the sagittal plane of the loaded coil.


Reference
  1. Wanzhan Liu, Christopher M. Collins, Pamela J. Delp, and Michael B. Smith.  “Effects of End-Ring/Shield Configuration on Homogeneity and Signal-to-Noise Ratio in a Birdcage-Type Coil Loaded With a Human Head.”Magnetic Resonance in Medicine, no. 51, pp. 217-221, 2004.

Request project files for this example by clicking here.


这篇关于MRI Birdcage-Type Coil at 64 MHz的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!



http://www.chinasem.cn/article/430488

相关文章

Oracle type (自定义类型的使用)

oracle - type   type定义: oracle中自定义数据类型 oracle中有基本的数据类型,如number,varchar2,date,numeric,float....但有时候我们需要特殊的格式, 如将name定义为(firstname,lastname)的形式,我们想把这个作为一个表的一列看待,这时候就要我们自己定义一个数据类型 格式 :create or repla

【MRI基础】TR 和 TE 时间概念

重复时间 (TR) 磁共振成像 (MRI) 中的 TR(重复时间,repetition time)是施加于同一切片的连续脉冲序列之间的时间间隔。具体而言,TR 是施加一个 RF(射频)脉冲与施加下一个 RF 脉冲之间的持续时间。TR 以毫秒 (ms) 为单位,主要控制后续脉冲之前的纵向弛豫程度(T1 弛豫),使其成为显著影响 MRI 中的图像对比度和信号特性的重要参数。 回声时间 (TE)

NGINX轻松管理10万长连接 --- 基于2GB内存的CentOS 6.5 x86-64

转自:http://blog.chinaunix.net/xmlrpc.php?r=blog/article&uid=190176&id=4234854 一 前言 当管理大量连接时,特别是只有少量活跃连接,NGINX有比较好的CPU和RAM利用率,如今是多终端保持在线的时代,更能让NGINX发挥这个优点。本文做一个简单测试,NGINX在一个普通PC虚拟机上维护100k的HTTP

LeetCode:64. 最大正方形 动态规划 时间复杂度O(nm)

64. 最大正方形 题目链接 题目描述 给定一个由 0 和 1 组成的二维矩阵,找出只包含 1 的最大正方形,并返回其面积。 示例1: 输入: 1 0 1 0 01 0 1 1 11 1 1 1 11 0 0 1 0输出: 4 示例2: 输入: 0 1 1 0 01 1 1 1 11 1 1 1 11 1 1 1 1输出: 9 解题思路 这道题的思路是使用动态规划

Caused by: org.hibernate.MappingException: Could not determine type for: org.cgh.ssh.pojo.GoodsType,

MappingException:这个主要是类映射上的异常,Could not determine type for: org.cgh.ssh.pojo.GoodsType,这句话表示GoodsType这个类没有被映射到

【Python从入门到进阶】64、Pandas如何实现数据的Concat合并

接上篇《63.Pandas如何实现数据的Merge》 上一篇我们学习了Pandas如何实现数据的Merge,本篇我们来继续学习Pandas如何实现数据的Concat合并。 一、引言 在数据处理过程中,经常需要将多个数据集合并为一个统一的数据集,以便进行进一步的分析或建模。这种需求在多种场景下都非常常见,比如合并不同来源的数据集以获取更全面的信息、将时间序列数据按时间顺序拼接起来以观察长期趋势等

兔子--The method setLatestEventInfo(Context, CharSequence, CharSequence, PendingIntent) from the type

notification.setLatestEventInfo(context, title, message, pendingIntent);     不建议使用 低于API Level 11版本,也就是Android 2.3.3以下的系统中,setLatestEventInfo()函数是唯一的实现方法。  Intent  intent = new Intent(

Beyond Compare4.2.4 64位OS最新密钥

亲测可用,拿来主义 6TTCoWi2N0Pv+o2HGfqUpZfuaMhtf2zX0u1OuNeqTYkKKWh-CKwBWkPUG3+CiAQ2q4MNPbf0t8+gmPdo+Vyw64aU-zuQQt9d7Q6EcJ+T42by0E+kxf+q3QLs40H+RD3h5OLjFGpxClodRnTCNoAM39xsWm2aHZI0Z9KdXzLo1fo1OdNlaptoK17SsxNK-

AI模型:追求全能还是专精?-- 之6 语言复杂度类别(Category 0~3 类)和语言功能性类型(Type 0~Ⅲ 型)之2

Q17、我前面说过,语言复杂度的0~3级(Category 0~3)表示了语言的的上下文相关性 : 完全不相关, 单相关的 单词上下文, 双相关的句子上下文 全相关的文章上下文 。我准备翻译为 Context - irrelative /relative/correlative/ full-correlative,显式表达了语言复杂度的0~3级(Category 0~3)区别的上下文相关性是一种关

leetcode : 64 最小路径和 动态规划

64. 最小路径和 题目链接https://leetcode.cn/problems/minimum-path-sum/ 题目描述 给定一个包含非负整数的 m x n 网格,请找出一条从左上角到右下角的路径,使得路径上的数字总和为最小。 说明:每次只能向下或者向右移动一步。 示例: [1,3,1][1,5,1][4,2,1] 输出: 7 解释: 因为路径 1→3→1