Replies: 1 comment 6 replies
-
Hi! KomaMRI does support RF and gradient spoiling, but you need to be careful and add additional isochromats in the directions you need as the default phantom is not very dense. I am curious, is the in-vivo image acquired with exactly the same sequence? The FOVs does not seem to match. For RF spoiling, as everything is happening in the z-direction (slice-selection), you can increase the number of spins in that direction with: obj_ui[] = brain_phantom3D(; us=[1, 1, 2], start_end=[175, 185]) # This modifies the object in the UI If you do gradient spoiling, you may need to increase As this spiral has 1600 points per TR, this may go beyond your GPU memory (#519), so you may need to change your simulation parameters: sim_params = KomaMRICore.default_sim_params()
sim_params["Nblocks"] = 4_000 # You can play with this, more blocks is slower but lowers memory usage To modify the simulation parameters in the UI: KomaUI(sim = sim_params) # You can also change the recon parameters with `rec = ` |
Beta Was this translation helpful? Give feedback.
-
Hello! I'm designing an RF-spoiled GRE sequence. I noticed that the reconstructed phantom image does not follow our expectations, but there is no issue when scanning the same sequence on scanner. My question is, does KomaMRI support simulating RF-spoiling and Gradient spoiling effects?
This is the reconstructed brain phantom image:
This is the reconstructed image from data collected by scanner:
This is the sequence file
spiral_test_24rf_rfspoi.zip
Beta Was this translation helpful? Give feedback.
All reactions