Tom feedback
Adds a new task, which depends on kick, to perform feedback. Currently, increases the thermal energy of the particle nearest a specified SN location by a specified amount.
Merge request reports
Activity
Added 98 commits:
-
2d1f6d22...e38c74c8 - 97 commits from branch
master
- c556388a - Merge branch 'master' into TTFeedback
-
2d1f6d22...e38c74c8 - 97 commits from branch
Added 1 commit:
- 0d969cd4 - dded source terms
Added 1 commit:
- d651d25f - Apply code formatting script. Remove unnecessary guards in the equation of state file.
- src/sourceterms.h 0 → 100644
- src/sourceterms.c 0 → 100644
20 21 /* Config parameters. */ 22 #include "../config.h" 23 24 /* Some standard headers. */ 25 #include <math.h> 26 27 /* Local includes. */ 28 #include "const.h" 29 #include "equation_of_state.h" 30 #include "error.h" 31 #include "parser.h" 32 #include "part.h" 33 #include "physical_constants.h" 34 #include "units.h" 35 1791 1796 scheduler_addunlock(sched, t->ci->init, t); 1792 1797 scheduler_addunlock(sched, t, t->ci->kick); 1793 1798 } 1799 /* source terms depend on kick (should eventually depend on cooling) */ 1800 else if (t->type == task_type_sourceterms) { 1801 scheduler_addunlock(sched, t->ci->kick, t); 1802 } 1794 1803 Added SPH label
Added enhancement label
Added 1 commit:
- c155969a - deleted unneccesary files, made consistent with cooling
Added 1 commit:
- 586c7573 - updated soruceterms
Added 92 commits:
-
586c7573...d6ebadaf - 91 commits from branch
master
- 7fd9ad30 - merged master
-
586c7573...d6ebadaf - 91 commits from branch
Added 1 commit:
- 6b6defc1 - merged with master
Added 1 commit:
- b401d0d2 - merged with master
Added 1 commit:
- 888a3fe5 - removed debug info
Added 1 commit:
- 436c80b6 - made sourceterms more general
Added 1 commit:
- f6e682ee - improved info provided by sourceterms
mentioned in commit 0f9ccb86
Please register or sign in to reply