From: Robert F. <rjf...@as...> - 2017-07-31 14:58:32
|
Hi Your best bet i think is to turn the rate off using the rate_factors array. Something like (untested) in extras_startup use net_lib use net_def type (Net_General_Info), pointer :: g do i=1,g% num_reactions if(trim(reaction_Name(g% reaction_id(i)))==trim('YOUR_REACTION_HERE')) then s%rate_factors(i)=0d0 end if end do s%rate_factors is an array with a multiplier for each rate in use, so by setting to 0 we turn the rate off. Rob On Mon, Jul 31, 2017 at 3:47 PM, amber lauer <al...@ls...> wrote: > Is there a way to use the adaptive net but eliminate a specific reaction? > If not, I'm thinking an alternative would be to just set the rate of said > reaction to 0, or, barring that as well, could such a thing be done using a > hook? > > ------------------------------------------------------------ > ------------------ > Check out the vibrant tech community on one of the world's most > engaging tech sites, Slashdot.org! http://sdm.link/slashdot > _______________________________________________ > mesa-users mailing list > mes...@li... > https://lists.sourceforge.net/lists/listinfo/mesa-users > > |