-
Notifications
You must be signed in to change notification settings - Fork 100
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
Cell definitions share fixed_duration boolean for apoptosis death model #199
Comments
If you flip the ordering of the cell definitions within the xml, then the reverse happens: all cells undergo random time to finish apoptosis. |
The .xml config file you provided is malformed and will cause PhysiCell to output warnings which may confuse the debugging process. It has nothing to do with the actual issue though. Specifically, the .xml specifies a non-existent |
Weird…sorry about that!On Aug 7, 2023, at 7:36 AM, Randy Heiland ***@***.***> wrote:
The .xml config file you provided is malformed and will cause PhysiCell to output warnings which may confuse the debugging process. It has nothing to do with the actual issue though. Specifically, the .xml specifies a non-existent "default" cell type in various blocks, e.g., <cell_interactions>. I think the attached .xml is correct. Still looking at the issue...
fixed.zip
—Reply to this email directly, view it on GitHub, or unsubscribe.You are receiving this because you authored the thread.Message ID: ***@***.***>
|
Spent several hours looking into this. Just want to make some brief comments here for now. May need to get Paul's input for a well thought out solution, but welcome input from others. This issue involves both the apoptosis and necrosis death models. And so far, I've only tested the case where
The reason for this is due to fact that, for each pointer |
we shoudl migrate teh "fixed duration" booleans from the graph strucure to the param strucxture fore each cycle model. |
To see this, make the template project and place the attached xml into the config folder. Run the simulation. Output should roughly match the attached video.
Expected behavior: All cells immediately begin apoptosis (apoptosis death rate is set to 100).
random_duration
cells have a variable time until they are removed.fixed_duration
cells all disappear at 2 hours. Both cells have the phase duration set to 2 hours.Observed behavior: All cells are removed at 2 hours, including the
random_duration
cells.Possible cause: PhysiCell_cell.cpp reads in the cell definitions, overwriting the fixed duration field of the apoptosis
CycleModel
with each one. Unclear how only this field seems to be overwritten and not the apoptosis rates.Archive.zip
The text was updated successfully, but these errors were encountered: