From 51af1a19f0adf22c7824ad184275cb20c6a165f3 Mon Sep 17 00:00:00 2001 From: lukashov <elena.lukashova@eurecom.fr> Date: Tue, 15 Dec 2015 16:09:53 +0100 Subject: [PATCH] Now BLER goes to 10^(-2) in case of abstraction and 10^-3 in regular mode. --- openair1/SIMULATION/LTE_PHY/dlsim.c | 29 ++++++++++++++++++++++------- 1 file changed, 22 insertions(+), 7 deletions(-) diff --git a/openair1/SIMULATION/LTE_PHY/dlsim.c b/openair1/SIMULATION/LTE_PHY/dlsim.c index d69b64d82c0..d3ce51ed731 100644 --- a/openair1/SIMULATION/LTE_PHY/dlsim.c +++ b/openair1/SIMULATION/LTE_PHY/dlsim.c @@ -4313,16 +4313,31 @@ n(tikz_fname,"w"); } else if (test_perf !=0 ){ printf("[continue] effective rate : %f (%2.1f%%,%f)): increase snr \n",rate*effective_rate, 100*effective_rate, rate); } - - if ((rx_type==rx_IC_dual_stream) || (rx_type==rx_standard)) { - if (((double)errs[0][0]/(round_trials[0]))<1e-2 && ((double)errs[1][0]/(round_trials[0]))<1e-2) - break; + if (abstx == 1) { + if ((rx_type==rx_IC_dual_stream) || (rx_type==rx_standard)) { + if (((double)errs[0][0]/(round_trials[0]))<1e-2 && ((double)errs[1][0]/(round_trials[0]))<1e-2) + break; + } + else{ + if (((double)errs[0][0]/(round_trials[0]))<1e-2) + break; + + } } - else{ - if (((double)errs[0][0]/(round_trials[0]))<1e-2) - break; + else { + + if ((rx_type==rx_IC_dual_stream) || (rx_type==rx_standard)) { + if (((double)errs[0][0]/(round_trials[0]))<1e-3 && ((double)errs[1][0]/(round_trials[0]))<1e-3) + break; + } + else{ + if (((double)errs[0][0]/(round_trials[0]))<1e-3) + break; + + } } + if (n_frames==1) break; -- GitLab