-
Notifications
You must be signed in to change notification settings - Fork 1
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Finite Pencil Beam Kernel #11
Merged
lmejn
merged 15 commits into
Image-X-Institute:main
from
lmejn:feature/finite-pencil-beam-kernel
Feb 11, 2023
Merged
Finite Pencil Beam Kernel #11
lmejn
merged 15 commits into
Image-X-Institute:main
from
lmejn:feature/finite-pencil-beam-kernel
Feb 11, 2023
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
- Added FinitePencilBeamKernel.jl to src/ and test/ - Implemented profile functions with relevant tests - Added Project.toml for tests
- AbstractFluenceElement is the new supertype for Bixels and Beamlets - Added Beamlet struct and constructor from a bixel - Moved all concrete methods on AbstractBixel to Bixel
- Not yet fully implemented - Added methods for dose-fluence matrix computations
- Added two methods for constructing FinitePencilBeamKernels - From parameter and scaling factor arrays - From an HDF5 file - Added the calibrate! method, which scales the kernel
- Added beamlet position to Beamlet - Can construct Beamlet from a Bixel and GantryPosition - Fixed calibrate!(calc::FinitePencilBeamKernel...) - Added Optim to find max. dose - Added Beamlet version of dose_fluence_matrix! and dose_fluence_matrix - Two versions of dose_fluence_matrix currently, for Bixel and for Beamlet - Added multi-threaded implementation of dose_fluence_matrix
- Fixed "batman" dose - Due to scaling issue in commisioning - Added linear extrapolation to fPBK interpolation - Added hard-coded axes directions sx and sy to point_dose for FPBK
- New methods fill_colptr!, fill_rowval! and dose_kernel! - Updated for fPBK
# for free
to join this conversation on GitHub.
Already have an account?
# to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Implements the Finite Pencil Beam Kernel (fPBK) dose calculation algorithm as described in Jelen et al. 2005.
Beamlet
type for beamlets. These can be constructed using bixel and gantry positionsdose_fluence_matrix!
fill_colptr!
,fill_rowval!
anddose_kernel!
to be implementedBeamlet
ScaledIsoplaneKernel