Skip to content

Commit

Permalink
fixing boundaries for energetic
Browse files Browse the repository at this point in the history
  • Loading branch information
andreatramacere committed Dec 18, 2024
1 parent 365c622 commit b75b06a
Showing 1 changed file with 8 additions and 2 deletions.
10 changes: 8 additions & 2 deletions jetkernel_src/src/PyInterface.c
Original file line number Diff line number Diff line change
Expand Up @@ -357,24 +357,30 @@ struct blob MakeBlob() {
void set_seed_freq_start(struct blob *pt_base){
//pt_base->nu_start_Sync = min(1e6, pt_base->nu_start_grid);
pt_base->nu_start_Sync = 1E6;
pt_base->NU_INT_STOP_Sync_SSC=0;

pt_base->nu_stop_Sync = 1E20;
pt_base->nu_start_SSC = 1E14;

pt_base->NU_INT_STOP_COMPTON_SSC=0;

//pt_base->nu_stop_SSC = max(1e30, pt_base->nu_stop_grid);
pt_base->nu_stop_SSC=1E30;

pt_base->nu_start_EC_Disk = 1E13;
//pt_base->nu_stop_EC_Disk = max(1e30, pt_base->nu_stop_grid);
pt_base->nu_stop_EC_Disk =1E30;
pt_base->NU_INT_MAX_Disk=0;

pt_base->nu_start_EC_BLR = 1E13;
//pt_base->nu_stop_EC_BLR = max(1e30, pt_base->nu_stop_grid);
pt_base->nu_stop_EC_BLR = 1E30;
pt_base->NU_INT_MAX_BLR=0;

pt_base->nu_start_EC_DT = 1E13;
pt_base->NU_INT_MAX_DT=0;
pt_base->nu_start_EC_CMB = 1E13;

pt_base->NU_INT_MAX_CMB=0;
pt_base->NU_INT_MAX_Star=0;
//pt_base->nu_stop_EC_CMB = max(1e30, pt_base->nu_stop_grid);
pt_base->nu_stop_EC_CMB = 1E30;
}
Expand Down

0 comments on commit b75b06a

Please sign in to comment.