Skip to content

Commit

Permalink
reverted grid change
Browse files Browse the repository at this point in the history
  • Loading branch information
andreatramacere committed Jun 17, 2024
1 parent 9bae48b commit daf1726
Showing 1 changed file with 22 additions and 13 deletions.
35 changes: 22 additions & 13 deletions jetkernel_src/src/PyInterface.c
Original file line number Diff line number Diff line change
Expand Up @@ -355,19 +355,28 @@ struct blob MakeBlob() {

//=========================================================================================
void set_seed_freq_start(struct blob *pt_base){
pt_base->nu_start_Sync = 1e6;
pt_base->nu_stop_Sync = 1e20;
pt_base->nu_start_SSC = 1e14;
pt_base->nu_stop_SSC = 1e30;


pt_base->nu_start_EC_Disk = 1e13;
pt_base->nu_stop_EC_Disk = 1e30;
pt_base->nu_start_EC_BLR = 1e13;
pt_base->nu_stop_EC_BLR = 1e30;
pt_base->nu_start_EC_DT = 1e13;
pt_base->nu_start_EC_CMB = 1e13;
pt_base->nu_stop_EC_CMB = 1e30;
//pt_base->nu_start_Sync = min(1e6, pt_base->nu_start_grid);
pt_base->nu_start_Sync = 1E6;

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

//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_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_start_EC_DT = 1E13;
pt_base->nu_start_EC_CMB = 1E13;

//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 daf1726

Please sign in to comment.