Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fix #894: revert egsphant to egs_brachy encoding #895

Merged
merged 1 commit into from
Oct 31, 2022

Conversation

ftessier
Copy link
Member

@ftessier ftessier commented Jul 8, 2022

Revert to the egs_brachy encoding for .egsphant files, allowing for 63 media encoded with the set of alphanumeric characters (where 0 is reserved for vacuum).

Briefly, #633 expanded the number of media in .egsphant files to 95, using all printable ascii characters. However, the number of media was also independently expanded in egs_glib for the development of egs_brachy, but using a different encoding consisting of only the 63 alphanumeric ascii characters. This leads to inconsistent egsphant files that are no longer interchangeable.

This issue was originally reported and discussed in clrp-code/egs_brachy#22.

@ftessier ftessier requested a review from a team as a code owner July 8, 2022 23:02
@ftessier ftessier requested review from mainegra, rtownson and blakewalters and removed request for a team July 8, 2022 23:02
@ftessier ftessier added this to the Release 2022 milestone Jul 8, 2022
@ftessier ftessier requested a review from a team July 8, 2022 23:02
@ftessier
Copy link
Member Author

ftessier commented Jul 8, 2022

This is a quick solution, where the encoding is hard-coded in ctcreate and dosxyznrc. @blakewalters can you clean this up to put the variable definition inside a proper macro so that it is defined only once? Ideally we would add an encoding string inside the .egsphant file, but that can wait.

@rtownson
Copy link
Collaborator

All of the material type declarations for each voxel was on a new line in the egsphant, instead of printed in a slice-by-slice grid. My commit just fixed that.

@rtownson
Copy link
Collaborator

This is a quick solution, where the encoding is hard-coded in ctcreate and dosxyznrc. @blakewalters can you clean this up to put the variable definition inside a proper macro so that it is defined only once? Ideally we would add an encoding string inside the .egsphant file, but that can wait.

@blakewalters I added this macro, so you don't have to :)

@ftessier
Copy link
Member Author

ftessier commented Jul 15, 2022

Can we try 6bb8618 instead, using advance='no' to prevent newlines? This is Fortran 90, is anyone still compiling with f77 you think?

@rtownson
Copy link
Collaborator

Can we try 6bb8618 instead, using advance='no' to prevent newlines? This is Fortran 90, is anyone still compiling with f77 you think?

Sure! I feel like we should be safe to switch to a standard that came out in 1991...

@rtownson
Copy link
Collaborator

Just leave the my other commit in the history, in case anyone ever comes to us wanting a version that works on f77.

@ftessier
Copy link
Member Author

Just leave the my other commit in the history, in case anyone ever comes to us wanting a version that works on f77.

I will squash this before merging, but will leave a note in the commit message!

@ftessier ftessier force-pushed the fix-egsphant-encoding branch from 6bb8618 to 2e057e7 Compare July 16, 2022 00:46
@ftessier ftessier force-pushed the fix-egsphant-encoding branch 5 times, most recently from 1896d4a to 45ac86a Compare July 19, 2022 20:51
@ftessier
Copy link
Member Author

ftessier commented Jul 19, 2022

In the end I reverted to using the implicit array over ii=1,iimax to avoid iimax write calls on each line. In my cursory testing, the implicit array form was significantly faster. For the record, the proper syntax of the write statement with advance='no' would be:

write(15, '(a1)', advance='no') encoding(code:code)

@ftessier ftessier force-pushed the fix-egsphant-encoding branch from 45ac86a to e4d083e Compare July 19, 2022 21:17
@ftessier
Copy link
Member Author

Fixed spacing.

@ftessier
Copy link
Member Author

Before merging: fix encoding string length typo in commit message. The encoding is 62 characters, and 0 is reserved for vacuum; so effectively 61 media can be encoded.

@ftessier ftessier force-pushed the fix-egsphant-encoding branch from 63915e2 to 994a74a Compare July 22, 2022 23:36
Copy link
Contributor

@blakewalters blakewalters left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I did an "end-to-end" calculation, using ctcreate to generate an .egsphant file with 12 media and then running this through a dosxyznrc simulation and didn't find any issues.

@ftessier ftessier requested a review from mainegra October 18, 2022 18:38
@rtownson rtownson self-requested a review October 19, 2022 13:52
Revert to the egs_brachy encoding for egsphant files, allowing for 62
media encoded with the set of alphanumeric characters (where 0 is
reserved for vacuum).

Briefly, #633 expanded the number of media in egsphant files to 95,
using all printable ascii characters. However, the number of media was
also independently expanded in egs_glib for the development of
egs_brachy, but using a different encoding consisting of only the 62
alphanumeric ascii characters. This led to inconsistent egsphant files
that are no longer interchangeable.

This issue was originally reported and discussed in
clrp-code/egs_brachy#22.
@ftessier ftessier force-pushed the fix-egsphant-encoding branch from 994a74a to 9846017 Compare October 31, 2022 16:18
@ftessier
Copy link
Member Author

Squashed the commits into a single one for merging into develop.

@ftessier ftessier merged commit 0f4f209 into develop Oct 31, 2022
@ftessier ftessier deleted the fix-egsphant-encoding branch October 31, 2022 16:20
@mchamberland
Copy link
Contributor

mchamberland commented Dec 21, 2022

There is still a discrepancy between this encoding and egs_brachy's: this one starts at 0, but egs_brachy's starts at 1. See here.

Or did I miss something in the discussion?

EDIT: Nevermind, I see it now at the top! My bad!

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

5 participants