A Discrete-Event Network Simulator
QKDNetSim v2.0 (NS-3 v3.41) @ (+)
API
All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Modules Pages
two-ray-to-three-gpp-ch-calibration Namespace Reference

Classes

class  FtrParams
 FtrParams class. More...
 

Functions

str append_ftr_params_to_cpp_string (str text, FtrParams params)
 
float compute_anderson_darling_measure (list ref_ecdf, list target_ecdf)
 Computes the Anderson-Darling measure for the specified reference and targets distributions. More...
 
np.ndarray compute_ecdf_value (list ecdf, float data_points)
 Given an ECDF and data points belonging to its domain, returns their associated EDCF value. More...
 
def compute_ftr_mean (FtrParams params)
 Computes the mean of the FTR fading model, given a specific set of parameters. More...
 
def compute_ftr_th_mean (FtrParams params)
 Computes the mean of the FTR fading model using the formula reported in the corresponding paper, given a specific set of parameters. More...
 
str fit_ftr_to_reference (pd.DataFrame ref_data, tuple ref_params_combo, int num_params, int num_refinements)
 Estimate the FTR parameters yielding the closest ECDF to the reference one. More...
 
def get_ftr_ecdf (FtrParams params, int n_samples, db=False)
 Returns the ECDF for the FTR fading model, for a given parameter grid. More...
 
float get_sigma_from_k (float k)
 Computes the value for the FTR parameter sigma, given k, yielding a unit-mean fading process. More...
 
def print_cplusplus_map_from_fit_results (pd.DataFrame fit, str out_fname)
 
def tqdm_joblib (tqdm_object)
 

Variables

float ad_meas = compute_anderson_darling_measure(np.sort(ref_data["gain"]), ftr_ecdf)
 
list ad_measures = []
 
 args = parser.parse_args()
 
 avg_mean = np.mean(mean_list)
 
 bbox_inches
 
 c_plus_plus_out_fname = args.c_plus_plus_out_fname
 
 data
 
tuple data_query
 
 default
 
 delta
 
 df = pd.read_csv(ref_data_fname, sep="\t")
 Data pre-processing ##. More...
 
 dpi
 
 encoding
 
 epsilon = float(args.epsilon)
 
 exist_ok
 
 figs_folder = args.figs_folder
 
 fit = pd.read_csv(fit_out_fname, delimiter="\t")
 
 fit_ftr_to_threegpp = bool(args.fit_ftr_to_threegpp)
 
 fit_line = fit.query(data_query)
 
 fit_out_fname = args.fit_out_fname
 
 frequencies = np.sort(list(set(df["fc"])))
 
def ftr_ecdf = get_ftr_ecdf(params, len(ref_data), db=True)
 
 help
 
 is_los = set(df["cond"])
 
 k
 
 label
 
 m
 
list mean_list = []
 
list mean_th_list = []
 
 num
 
 num_refinements = int(args.num_refinements)
 
 num_search_grid_params = int(args.num_search_grid_params)
 
 output_ns3_table = bool(args.output_ns3_table)
 
 params = FtrParams()
 Fit Fluctuating Two Ray model to the 3GPP TR 38.901 using the Anderson-Darling goodness-of-fit ##. More...
 
 parents
 
 parser = argp.ArgumentParser(formatter_class=argp.ArgumentDefaultsHelpFormatter)
 
 plot_fit_results = bool(args.plot_fit_results)
 
 preliminary_fit_test = bool(args.preliminary_fit_test)
 
 rc
 
 ref_data = df.query(data_query)
 
 ref_data_fname = args.ref_data_fname
 
 res
 
 scenarios = set(df["scen"])
 
float sigma = get_sigma_from_k(k)
 
 start
 
 stop
 
 True
 
 x
 

Function Documentation

◆ append_ftr_params_to_cpp_string()

str two-ray-to-three-gpp-ch-calibration.append_ftr_params_to_cpp_string ( str  text,
FtrParams  params 
)

Definition at line 433 of file two-ray-to-three-gpp-ch-calibration.py.

Referenced by print_cplusplus_map_from_fit_results().

+ Here is the caller graph for this function:

◆ compute_anderson_darling_measure()

float two-ray-to-three-gpp-ch-calibration.compute_anderson_darling_measure ( list  ref_ecdf,
list  target_ecdf 
)

Computes the Anderson-Darling measure for the specified reference and targets distributions.

In particular, the Anderson-Darling measure is defined as: $A^2 = -N -S$, where $S = \sum_{i=1}^N \frac{2i - 1}{N} \left[ ln F(Y_i) + ln F(Y_{N + 1 - i}) \right]$.

See https://www.itl.nist.gov/div898/handbook/eda/section3/eda35e.htm for further details.

Parameters
ref_ecdfThe reference ECDF.
target_ecdfThe target ECDF we wish to match the reference distribution to.
Returns
The Anderson-Darling measure for the specified reference and targets distributions.

Definition at line 248 of file two-ray-to-three-gpp-ch-calibration.py.

References compute_ecdf_value().

Referenced by fit_ftr_to_reference().

+ Here is the call graph for this function:
+ Here is the caller graph for this function:

◆ compute_ecdf_value()

np.ndarray two-ray-to-three-gpp-ch-calibration.compute_ecdf_value ( list  ecdf,
float  data_points 
)

Given an ECDF and data points belonging to its domain, returns their associated EDCF value.

Parameters
ecdfThe ECDF, represented as a sorted list of samples.
data_pointsA list of data points belonging to the same domain as the samples.
Returns
The ECDF value of the domain points of the specified ECDF

Definition at line 276 of file two-ray-to-three-gpp-ch-calibration.py.

Referenced by compute_anderson_darling_measure().

+ Here is the caller graph for this function:

◆ compute_ftr_mean()

def two-ray-to-three-gpp-ch-calibration.compute_ftr_mean ( FtrParams  params)

Computes the mean of the FTR fading model, given a specific set of parameters.

Parameters
paramsThe FTR fading model parameters.

Definition at line 225 of file two-ray-to-three-gpp-ch-calibration.py.

◆ compute_ftr_th_mean()

def two-ray-to-three-gpp-ch-calibration.compute_ftr_th_mean ( FtrParams  params)

Computes the mean of the FTR fading model using the formula reported in the corresponding paper, given a specific set of parameters.

Parameters
paramsThe FTR fading model parameters.

Definition at line 239 of file two-ray-to-three-gpp-ch-calibration.py.

◆ fit_ftr_to_reference()

str two-ray-to-three-gpp-ch-calibration.fit_ftr_to_reference ( pd.DataFrame  ref_data,
tuple  ref_params_combo,
int  num_params,
int   num_refinements 
)

Estimate the FTR parameters yielding the closest ECDF to the reference one.

Uses a global search to estimate the FTR parameters yielding the best fit to the reference ECDF.
Then, the search is refined by repeating the procedure in the neighborhood of the parameters
identified with the global search. Such a neighborhood is determined as the interval whose center
is the previous iteration best value, and the lower and upper bounds are the first lower and upper
values which were previously considered, respectively.
Parameters
ref_dataThe reference data, represented as a DataFrame of samples.
ref_params_comboThe specific combination of simulation parameters corresponding to the reference ECDF
num_paramsThe number of values of each parameter in the global and local search grids.
num_refinementsThe number of local refinement search to be carried out after the global search.
Returns
An estimate of the FTR parameters yielding the closest ECDF to the reference one.

Definition at line 301 of file two-ray-to-three-gpp-ch-calibration.py.

References compute_anderson_darling_measure(), get_ftr_ecdf(), get_sigma_from_k(), max, and min.

+ Here is the call graph for this function:

◆ get_ftr_ecdf()

def two-ray-to-three-gpp-ch-calibration.get_ftr_ecdf ( FtrParams  params,
int  n_samples,
  db = False 
)

Returns the ECDF for the FTR fading model, for a given parameter grid.

Parameters
paramsThe FTR parameters grid.
n_samplesThe number of samples of the output ECDF
dbWhether to return the ECDF with the gain expressed in dB
Returns
The ECDF for the FTR fading model

Definition at line 175 of file two-ray-to-three-gpp-ch-calibration.py.

Referenced by fit_ftr_to_reference().

+ Here is the caller graph for this function:

◆ get_sigma_from_k()

float two-ray-to-three-gpp-ch-calibration.get_sigma_from_k ( float  k)

Computes the value for the FTR parameter sigma, given k, yielding a unit-mean fading process.

Parameters
kThe K parameter of the FTR fading model, which represents the ratio of the average power of the dominant components to the power of the remaining diffuse multipath.
Returns
The value for the FTR parameter sigma, given k, yielding a unit-mean fading process.

Definition at line 291 of file two-ray-to-three-gpp-ch-calibration.py.

Referenced by fit_ftr_to_reference().

+ Here is the caller graph for this function:

◆ print_cplusplus_map_from_fit_results()

def two-ray-to-three-gpp-ch-calibration.print_cplusplus_map_from_fit_results ( pd.DataFrame  fit,
str  out_fname 
)
Prints to a file the results of the FTR fit, as C++ code.

Args:
  fit (pd.DataFrame): A Pandas Dataframe holding the results of the FTR fit.
  out_fname (str): The name of the file to print the C++ code to.

Definition at line 440 of file two-ray-to-three-gpp-ch-calibration.py.

References append_ftr_params_to_cpp_string(), and list.

+ Here is the call graph for this function:

◆ tqdm_joblib()

def two-ray-to-three-gpp-ch-calibration.tqdm_joblib (   tqdm_object)
Context manager to patch joblib to report into tqdm progress bar given as argument.
Taken from: https://stackoverflow.com/questions/24983493/tracking-progress-of-joblib-parallel-execution

Definition at line 110 of file two-ray-to-three-gpp-ch-calibration.py.

Variable Documentation

◆ ad_meas

float two-ray-to-three-gpp-ch-calibration.ad_meas = compute_anderson_darling_measure(np.sort(ref_data["gain"]), ftr_ecdf)

Definition at line 600 of file two-ray-to-three-gpp-ch-calibration.py.

◆ ad_measures

two-ray-to-three-gpp-ch-calibration.ad_measures = []

Definition at line 577 of file two-ray-to-three-gpp-ch-calibration.py.

◆ args

two-ray-to-three-gpp-ch-calibration.args = parser.parse_args()

Definition at line 84 of file two-ray-to-three-gpp-ch-calibration.py.

◆ avg_mean

two-ray-to-three-gpp-ch-calibration.avg_mean = np.mean(mean_list)

Definition at line 524 of file two-ray-to-three-gpp-ch-calibration.py.

◆ bbox_inches

two-ray-to-three-gpp-ch-calibration.bbox_inches

Definition at line 610 of file two-ray-to-three-gpp-ch-calibration.py.

◆ c_plus_plus_out_fname

two-ray-to-three-gpp-ch-calibration.c_plus_plus_out_fname = args.c_plus_plus_out_fname

Definition at line 94 of file two-ray-to-three-gpp-ch-calibration.py.

◆ data

two-ray-to-three-gpp-ch-calibration.data

Definition at line 603 of file two-ray-to-three-gpp-ch-calibration.py.

◆ data_query

tuple two-ray-to-three-gpp-ch-calibration.data_query
Initial value:
1 = (
2  "scen == @params_comb[0] and cond == @params_comb[1] and fc == @params_comb[2]"
3  )

Definition at line 580 of file two-ray-to-three-gpp-ch-calibration.py.

◆ default

two-ray-to-three-gpp-ch-calibration.default

Definition at line 38 of file two-ray-to-three-gpp-ch-calibration.py.

◆ delta

two-ray-to-three-gpp-ch-calibration.delta

Definition at line 521 of file two-ray-to-three-gpp-ch-calibration.py.

Referenced by ns3::TwoRaySpectrumPropagationLossModel::FtrParams.FtrParams(), ns3::SpectrumModel.SpectrumModel(), ns3::Buffer.AddAtEnd(), ns3::Buffer.AddAtStart(), PacketTagListTest.AddRemoveTime(), ns3::BSSchedulerRtps.BSSchedulerRTPSConnection(), TcpYeahDecrementTest.CalculateSsThresh(), ns3::OnOffApplication.CancelEvents(), ns3::int64x64::test::Int64x64DoubleTestCase.Check(), ns3::CobaltQueueDisc.CobaltShouldDrop(), ns3::TcpLinuxReno.CongestionAvoidance(), ns3::TcpScalable.CongestionAvoidance(), ns3::CoDelQueueDisc.DoDequeue(), ns3::TbfQueueDisc.DoDequeue(), TcpScalableIncrementTest.DoRun(), FtrFadingModelAverageTest.DoRun(), anonymous_namespace{sample-show-progress.cc}::Hold.Event(), ns3::MinstrelWifiManager.FindRate(), nlohmann::detail::dtoa_impl.grisu2_digit_gen(), nlohmann::detail::dtoa_impl.grisu2_round(), TcpYeahIncrementTest.IncreaseWindow(), ns3::RttMeanDeviation.IntegerUpdate(), ns3::ArpCache::Entry.IsExpired(), ns3::Buffer::Iterator.Next(), nlohmann::detail::dtoa_impl::diyfp.normalize_to(), ns3::CoDelQueueDisc.OkToDrop(), ns3::SequenceNumber< NUMERIC_TYPE, SIGNED_TYPE >.operator+(), ns3::SequenceNumber10.operator+(), ns3::SequenceNumber< NUMERIC_TYPE, SIGNED_TYPE >.operator-(), ns3::SequenceNumber10.operator-(), ns3::Buffer::Iterator.Prev(), ns3::AnimationInterface.PurgePendingPackets(), ns3::Ping.Receive(), ns3::V4TraceRoute.Receive(), ns3::DelayJitterEstimation.RecordRx(), ns3::Buffer.RemoveAtStart(), PacketTagListTest.RemoveTime(), LookupTimeTestCase.Report(), ns3::LteUePowerControl.ReportTpc(), ns3::RvBatteryModel.RvModelAFunction(), ns3::Ping.StartApplication(), ns3.TestDoubleIsEqual(), ns3::Hash::Example::Dictionary.TimeOne(), ns3::UplinkSchedulerRtps.ULSchedulerRTPSConnection(), and ns3::TcpCubic.Update().

◆ df

two-ray-to-three-gpp-ch-calibration.df = pd.read_csv(ref_data_fname, sep="\t")

Data pre-processing ##.

Definition at line 500 of file two-ray-to-three-gpp-ch-calibration.py.

◆ dpi

two-ray-to-three-gpp-ch-calibration.dpi

Definition at line 609 of file two-ray-to-three-gpp-ch-calibration.py.

◆ encoding

◆ epsilon

two-ray-to-three-gpp-ch-calibration.epsilon = float(args.epsilon)

Definition at line 98 of file two-ray-to-three-gpp-ch-calibration.py.

◆ exist_ok

two-ray-to-three-gpp-ch-calibration.exist_ok

Definition at line 576 of file two-ray-to-three-gpp-ch-calibration.py.

◆ figs_folder

two-ray-to-three-gpp-ch-calibration.figs_folder = args.figs_folder

Definition at line 96 of file two-ray-to-three-gpp-ch-calibration.py.

◆ fit

◆ fit_ftr_to_threegpp

two-ray-to-three-gpp-ch-calibration.fit_ftr_to_threegpp = bool(args.fit_ftr_to_threegpp)

Definition at line 102 of file two-ray-to-three-gpp-ch-calibration.py.

◆ fit_line

two-ray-to-three-gpp-ch-calibration.fit_line = fit.query(data_query)

Definition at line 588 of file two-ray-to-three-gpp-ch-calibration.py.

◆ fit_out_fname

two-ray-to-three-gpp-ch-calibration.fit_out_fname = args.fit_out_fname

Definition at line 92 of file two-ray-to-three-gpp-ch-calibration.py.

◆ frequencies

◆ ftr_ecdf

two-ray-to-three-gpp-ch-calibration.ftr_ecdf = get_ftr_ecdf(params, len(ref_data), db=True)

Definition at line 597 of file two-ray-to-three-gpp-ch-calibration.py.

◆ help

two-ray-to-three-gpp-ch-calibration.help

Definition at line 39 of file two-ray-to-three-gpp-ch-calibration.py.

◆ is_los

two-ray-to-three-gpp-ch-calibration.is_los = set(df["cond"])

Definition at line 506 of file two-ray-to-three-gpp-ch-calibration.py.

◆ k

two-ray-to-three-gpp-ch-calibration.k

Definition at line 534 of file two-ray-to-three-gpp-ch-calibration.py.

Referenced by ns3::TwoRaySpectrumPropagationLossModel::FtrParams.FtrParams(), ns3::HtOperation.HtOperation(), ns3::AttributeConstructionList.Add(), nlohmann::detail::dtoa_impl.append_exponent(), ns3::RandomWaypointMobilityModel.BeginWalk(), ns3::SteadyStateRandomWaypointMobilityModel.BeginWalk(), ns3::YansErrorRateModel.Binomial(), ns3::IdealWifiManager.BuildSnrThresholds(), ns3::UanPhyPerUmodem.CalcPer(), ns3::UanPhyPerCommonModes.CalcPer(), ns3::LteFfrDistributedAlgorithm.Calculate(), PacketMetadataTest.CheckHistory(), ns3::test::RandomVariable::ErlangTestCase.ChiSquaredTest(), ns3::test::RandomVariable::ErlangAntitheticTestCase.ChiSquaredTest(), ns3::UanMacRcGw.CompExpMinIndex(), ns3::UanMacRcGw.ComputeExpBOverA(), ns3::UanMacRcGw.ComputePiK(), ns3::dsr::DsrRouteCache.DeleteAllRoutesIncludeLink(), ns3::PendingAddrFields.Deserialize(), ns3::aodv::RerrHeader.Deserialize(), ns3::EpcX2SnStatusTransferHeader.Deserialize(), ns3::EpcX2LoadInformationHeader.Deserialize(), PacketTest.DoCheck(), PacketTest.DoCheckData(), ns3::GlobalRouter.DoDispose(), ns3::ChannelAccessManager.DoGrantDcfAccess(), ns3::tests::MatrixArrayTestCase< T >.DoRun(), ns3::test::RandomVariable::ErlangTestCase.DoRun(), ns3::test::RandomVariable::ErlangAntitheticTestCase.DoRun(), Ipv4FragmentationTest.DoRun(), Ipv6FragmentationTest.DoRun(), CarrierAggregationConfigTestCase.DoRun(), ThreeGppShadowingTestCase.DoRun(), SixlowpanFragmentationTest.DoRun(), SpectrumIdealPhyTestCase.DoRun(), FtrFadingModelAverageTest.DoRun(), SpectrumWifiPhyMultipleInterfacesTest.DoRun(), ns3::LteEnbMac.DoSchedDlConfigInd(), ns3::CqaFfMacScheduler.DoSchedDlTriggerReq(), ns3::FdBetFfMacScheduler.DoSchedDlTriggerReq(), ns3::FdMtFfMacScheduler.DoSchedDlTriggerReq(), ns3::FdTbfqFfMacScheduler.DoSchedDlTriggerReq(), ns3::PfFfMacScheduler.DoSchedDlTriggerReq(), ns3::PssFfMacScheduler.DoSchedDlTriggerReq(), ns3::RrFfMacScheduler.DoSchedDlTriggerReq(), ns3::TdBetFfMacScheduler.DoSchedDlTriggerReq(), ns3::TdMtFfMacScheduler.DoSchedDlTriggerReq(), ns3::TdTbfqFfMacScheduler.DoSchedDlTriggerReq(), ns3::TtaFfMacScheduler.DoSchedDlTriggerReq(), ns3::YansErrorRateModel.Factorial(), ns3::AttributeConstructionList.Find(), nlohmann::detail::dtoa_impl.format_buffer(), FtrFadingModelAverageTest.FtrSquaredNormExpectedMean(), nlohmann::detail::dtoa_impl.get_cached_power_for_binary_exponent(), ns3::NixVectorRouting< T >.GetAdjacentNetDevices(), ns3::LrWpanErrorModel.GetChunkSuccessRate(), ns3::UanMacRcGw.GetExpPdk(), ns3::ErlangRandomVariable.GetInteger(), ns3::ThreeGppChannelModel.GetNewChannel(), ns3::Ipv4GlobalRouting.GetRoute(), ns3::ErlangRandomVariable.GetValue(), nlohmann::detail::dtoa_impl.grisu2_digit_gen(), ns3::ThompsonSamplingWifiManager.InitializeStation(), nlohmann::detail::json_sax_dom_callback_parser< BasicJsonType >.key(), ns3::Ipv4GlobalRouting.LookupGlobal(), ns3.lookuphash(), ns3::dsr::DsrRouteCache.LookupRoute(), ns3.MakeObjectMapAccessor(), ns3.MakeObjectVectorAccessor(), ns3::UanMacRcGw.NchooseK(), ns3::UanPhyPerUmodem.NChooseK(), ns3::aodv::RerrHeader.operator==(), ns3::QKDKeyManagerSystemApplication.ProcessRequest(), ns3::RngStream.RandU01(), ns3::dsr::DsrRouteCache.RebuildBestRouteTable(), ns3::LteUePhy.ReceiveLteControlMessageList(), ns3::Ipv4GlobalRouting.RemoveRoute(), ns3::PendingAddrFields.Serialize(), ns3::EpcX2SnStatusTransferHeader.Serialize(), ns3::EpcX2LoadInformationHeader.Serialize(), ns3::EpcX2LoadInformationHeader.SetCellInformationList(), ns3::LteEnbPhy.StartSubFrame(), ns3::SteadyStateRandomWaypointMobilityModel.SteadyStateBeginWalk(), ns3::QKDKeyManagerSystemApplication.TransformKeys(), and ns3::ChannelAccessManager.UpdateBackoff().

◆ label

two-ray-to-three-gpp-ch-calibration.label

◆ m

two-ray-to-three-gpp-ch-calibration.m

Definition at line 591 of file two-ray-to-three-gpp-ch-calibration.py.

Referenced by ns3::TwoRaySpectrumPropagationLossModel::FtrParams.FtrParams(), SpectrumInterferenceTestSuite.SpectrumInterferenceTestSuite(), ns3::LrWpanHelper.AddMobility(), ns3::SpectrumChannelHelper.AddPropagationLoss(), ns3::SpectrumChannelHelper.AddSpectrumPropagationLoss(), RttEstimatorTestCase.CheckValues(), RttEstimatorTestCase.CheckValuesWithTolerance(), ns3::HePhy.ConvertHeTbPpduDurationToLSigLength(), ns3::HePhy.ConvertLSigLengthToHeTbPpduDuration(), ns3::EpcX2SnStatusTransferHeader.Deserialize(), ns3::EpcX2LoadInformationHeader.Deserialize(), ns3::NakagamiPropagationLossModel.DoCalcRxPower(), ns3::RedQueueDisc.DoEnqueue(), ns3::aodv::LoopbackTestCase.DoRun(), TcpTestCase.DoRun(), MatrixPropagationLossModelTestCase.DoRun(), FtrFadingModelAverageTest.DoRun(), ns3::LteUePhy.EnqueueDlHarqFeedback(), ns3::TcpSocketBase.EstimateRtt(), ns3::RedQueueDisc.Estimator(), ns3::RttMeanDeviation.FloatingPointUpdate(), nlohmann::detail.from_json(), ns3::YansErrorRateModel.GetFecQamBer(), ns3::YansErrorRateModel.GetQamBer(), ns3::WifiInformationElement.GetSerializedSize(), ns3::HePpdu.GetTxDuration(), nlohmann::detail::dtoa_impl.grisu2_digit_gen(), ns3::dot11s::IeRann.IncrementMetric(), ns3::RttMeanDeviation.IntegerUpdate(), ns3::PhyEntity.IsModeSupported(), ns3::dsr::DsrRouteCache.LookupRoute(), MRG32k3a.MatMatModM(), MRG32k3a.MatPowModM(), MRG32k3a.MatTwoPowModM(), MRG32k3a.MatVecModM(), ns3::RttMeanDeviation.Measurement(), MRG32k3a.MultModM(), ns3::NeighborCacheHelper.PopulateNeighborEntriesIpv4(), ns3::NeighborCacheHelper.PopulateNeighborEntriesIpv6(), printCoordinateArray(), printMatrix(), ns3::LteEnbPhy.QueueUlDci(), readCoordinatesFile(), ns3::RvBatteryModel.RvModelAFunction(), ns3::EpcX2SnStatusTransferHeader.Serialize(), ns3::EpcX2LoadInformationHeader.Serialize(), ns3::WifiInformationElement.SerializeFragments(), ns3::LtePhy.SetControlMessages(), ns3::Icmpv6RA.SetCurHopLimit(), ns3::DlHarqFeedbackLteControlMessage.SetDlHarqFeedback(), ns3::Icmpv6RA.SetFlagM(), ns3::HePpdu.SetLSigHeader(), ns3::HttpHeader.SetMethod(), ns3::HTTPMessage.SetMethod(), ns3::WifiSpectrumPhyInterface.SetMobility(), ns3::LrWpanPhy.SetMobility(), ns3::LteSpectrumPhy.SetMobility(), ns3::RemSpectrumPhy.SetMobility(), ns3::LteSimpleSpectrumPhy.SetMobility(), ns3::HalfDuplexIdealPhy.SetMobility(), ns3::SpectrumAnalyzer.SetMobility(), ns3::TvSpectrumTransmitter.SetMobility(), ns3::WaveformGenerator.SetMobility(), ns3::RemSpectrumPhy.SetRxSpectrumModel(), ns3::SpectrumAnalyzerHelper.SetRxSpectrumModel(), ns3::NeighborCacheHelper.UpdateCacheByIpv4AddressAdded(), and ns3::NeighborCacheHelper.UpdateCacheByIpv6AddressAdded().

◆ mean_list

list two-ray-to-three-gpp-ch-calibration.mean_list = []

Definition at line 518 of file two-ray-to-three-gpp-ch-calibration.py.

◆ mean_th_list

list two-ray-to-three-gpp-ch-calibration.mean_th_list = []

Definition at line 529 of file two-ray-to-three-gpp-ch-calibration.py.

◆ num

◆ num_refinements

two-ray-to-three-gpp-ch-calibration.num_refinements = int(args.num_refinements)

Definition at line 88 of file two-ray-to-three-gpp-ch-calibration.py.

◆ num_search_grid_params

two-ray-to-three-gpp-ch-calibration.num_search_grid_params = int(args.num_search_grid_params)

Definition at line 86 of file two-ray-to-three-gpp-ch-calibration.py.

◆ output_ns3_table

two-ray-to-three-gpp-ch-calibration.output_ns3_table = bool(args.output_ns3_table)

Definition at line 104 of file two-ray-to-three-gpp-ch-calibration.py.

◆ params

two-ray-to-three-gpp-ch-calibration.params = FtrParams()

Fit Fluctuating Two Ray model to the 3GPP TR 38.901 using the Anderson-Darling goodness-of-fit ##.

Definition at line 514 of file two-ray-to-three-gpp-ch-calibration.py.

Referenced by EhtOperationElementTest.EhtOperationElementTest(), EmlsrDlTxopTest.EmlsrDlTxopTest(), EmlsrUlTxopTest.EmlsrUlTxopTest(), ns3::DrbActivator.ActivateDrb(), AssociateConfirm(), AssociateIndication(), TestActiveScanPanDescriptors.BeaconNotifyIndication(), ns3::ThreeGppSpectrumPropagationLossModel.CalcBeamformingGain(), ns3::ThreeGppSpectrumPropagationLossModel.CalcLongTerm(), ns3::SpectrumPropagationLossModel.CalcRxPowerSpectralDensity(), ns3::PhasedArraySpectrumPropagationLossModel.CalcRxPowerSpectralDensity(), ns3::ThreeGppSpectrumPropagationLossModel.CalculateLongTermComponent(), ThreeGppSpectrumPropagationLossModelTest.CheckLongTermUpdate(), CommStatusIndication(), ns3::MemberLteUeRrcSapProvider< C >.CompleteSetup(), ns3::UeManager.CompleteSetupUe(), ns3::MemberLteEnbRrcSapProvider< C >.CompleteSetupUe(), ComputeSnr(), ThreeGppMimoPolarizationTest.CreateAndConfigureAntenna(), ns3::EnbMacMemberFfMacCschedSapUser.CschedCellConfigCnf(), ns3::MemberCschedSapProvider< C >.CschedCellConfigReq(), ns3::EnbMacMemberFfMacCschedSapUser.CschedCellConfigUpdateInd(), ns3::EnbMacMemberFfMacCschedSapUser.CschedLcConfigCnf(), ns3::MemberCschedSapProvider< C >.CschedLcConfigReq(), ns3::EnbMacMemberFfMacCschedSapUser.CschedLcReleaseCnf(), ns3::MemberCschedSapProvider< C >.CschedLcReleaseReq(), ns3::EnbMacMemberFfMacCschedSapUser.CschedUeConfigCnf(), ns3::MemberCschedSapProvider< C >.CschedUeConfigReq(), ns3::EnbMacMemberFfMacCschedSapUser.CschedUeConfigUpdateInd(), ns3::EnbMacMemberFfMacCschedSapUser.CschedUeReleaseCnf(), ns3::MemberCschedSapProvider< C >.CschedUeReleaseReq(), DataConfirm(), TestRxOffWhenIdleAfterCsmaFailure.DataConfirm(), ns3::MemberEpcEnbS1SapUser< C >.DataRadioBearerSetupRequest(), DataSentMacConfirm(), ns3::EhtOperation::EhtOpParams.Deserialize(), ns3::EnbMacMemberLteEnbPhySapUser.DlInfoListElementHarqFeedback(), ns3::PhyRxStatsCalculator.DlPhyReception(), ns3::PhyRxStatsCalculator.DlPhyReceptionCallback(), ns3::PhyTxStatsCalculator.DlPhyTransmission(), ns3::PhyTxStatsCalculator.DlPhyTransmissionCallback(), ns3::LteEnbMac.DoAddLc(), ns3::LteEnbMac.DoAddUe(), ns3::ConstantSpectrumPropagationLossModel.DoCalcRxPowerSpectralDensity(), ns3::FriisSpectrumPropagationLossModel.DoCalcRxPowerSpectralDensity(), ns3::TraceFadingLossModel.DoCalcRxPowerSpectralDensity(), ns3::TwoRaySpectrumPropagationLossModel.DoCalcRxPowerSpectralDensity(), ns3::LteUeRrc.DoCompleteSetup(), ns3::LteEnbRrc.DoCompleteSetupUe(), ns3::LteEnbMac.DoConfigureMac(), ns3::CqaFfMacScheduler.DoCschedCellConfigReq(), ns3::FdBetFfMacScheduler.DoCschedCellConfigReq(), ns3::FdMtFfMacScheduler.DoCschedCellConfigReq(), ns3::FdTbfqFfMacScheduler.DoCschedCellConfigReq(), ns3::PfFfMacScheduler.DoCschedCellConfigReq(), ns3::PssFfMacScheduler.DoCschedCellConfigReq(), ns3::RrFfMacScheduler.DoCschedCellConfigReq(), ns3::TdBetFfMacScheduler.DoCschedCellConfigReq(), ns3::TdMtFfMacScheduler.DoCschedCellConfigReq(), ns3::TdTbfqFfMacScheduler.DoCschedCellConfigReq(), ns3::TtaFfMacScheduler.DoCschedCellConfigReq(), ns3::CqaFfMacScheduler.DoCschedLcConfigReq(), ns3::FdBetFfMacScheduler.DoCschedLcConfigReq(), ns3::FdMtFfMacScheduler.DoCschedLcConfigReq(), ns3::FdTbfqFfMacScheduler.DoCschedLcConfigReq(), ns3::PfFfMacScheduler.DoCschedLcConfigReq(), ns3::PssFfMacScheduler.DoCschedLcConfigReq(), ns3::TdBetFfMacScheduler.DoCschedLcConfigReq(), ns3::TdMtFfMacScheduler.DoCschedLcConfigReq(), ns3::TdTbfqFfMacScheduler.DoCschedLcConfigReq(), ns3::TtaFfMacScheduler.DoCschedLcConfigReq(), ns3::CqaFfMacScheduler.DoCschedLcReleaseReq(), ns3::FdBetFfMacScheduler.DoCschedLcReleaseReq(), ns3::FdMtFfMacScheduler.DoCschedLcReleaseReq(), ns3::FdTbfqFfMacScheduler.DoCschedLcReleaseReq(), ns3::PfFfMacScheduler.DoCschedLcReleaseReq(), ns3::PssFfMacScheduler.DoCschedLcReleaseReq(), ns3::RrFfMacScheduler.DoCschedLcReleaseReq(), ns3::TdBetFfMacScheduler.DoCschedLcReleaseReq(), ns3::TdMtFfMacScheduler.DoCschedLcReleaseReq(), ns3::TdTbfqFfMacScheduler.DoCschedLcReleaseReq(), ns3::TtaFfMacScheduler.DoCschedLcReleaseReq(), ns3::CqaFfMacScheduler.DoCschedUeConfigReq(), ns3::FdBetFfMacScheduler.DoCschedUeConfigReq(), ns3::FdMtFfMacScheduler.DoCschedUeConfigReq(), ns3::FdTbfqFfMacScheduler.DoCschedUeConfigReq(), ns3::PfFfMacScheduler.DoCschedUeConfigReq(), ns3::PssFfMacScheduler.DoCschedUeConfigReq(), ns3::RrFfMacScheduler.DoCschedUeConfigReq(), ns3::TdBetFfMacScheduler.DoCschedUeConfigReq(), ns3::TdMtFfMacScheduler.DoCschedUeConfigReq(), ns3::TdTbfqFfMacScheduler.DoCschedUeConfigReq(), ns3::TtaFfMacScheduler.DoCschedUeConfigReq(), ns3::LteEnbMac.DoCschedUeConfigUpdateInd(), ns3::CqaFfMacScheduler.DoCschedUeReleaseReq(), ns3::FdBetFfMacScheduler.DoCschedUeReleaseReq(), ns3::FdMtFfMacScheduler.DoCschedUeReleaseReq(), ns3::FdTbfqFfMacScheduler.DoCschedUeReleaseReq(), ns3::PfFfMacScheduler.DoCschedUeReleaseReq(), ns3::PssFfMacScheduler.DoCschedUeReleaseReq(), ns3::RrFfMacScheduler.DoCschedUeReleaseReq(), ns3::TdBetFfMacScheduler.DoCschedUeReleaseReq(), ns3::TdMtFfMacScheduler.DoCschedUeReleaseReq(), ns3::TdTbfqFfMacScheduler.DoCschedUeReleaseReq(), ns3::TtaFfMacScheduler.DoCschedUeReleaseReq(), ns3::LteEnbMac.DoDlInfoListElementHarqFeedback(), ns3::WifiBandwidthFilter.DoFilter(), ns3::EpcEnbApplication.DoInitialContextSetupRequest(), ns3::LteRlcAm.DoNotifyTxOpportunity(), ns3::LteRlcTm.DoNotifyTxOpportunity(), ns3::LteRlcUm.DoNotifyTxOpportunity(), ns3::LteRlcSm.DoNotifyTxOpportunity(), ns3::EpcEnbApplication.DoPathSwitchRequest(), ns3::LteEnbRrc.DoPathSwitchRequestAcknowledge(), ns3::EpcEnbApplication.DoPathSwitchRequestAcknowledge(), ns3::UeManager.DoReceivePdcpSdu(), ns3::LteUeRrcProtocolReal.DoReceivePdcpSdu(), ns3::LteEnbRrcProtocolReal.DoReceivePdcpSdu(), ns3::LteUeRrc.DoReceivePdcpSdu(), ns3::LteTestRrc.DoReceivePdcpSdu(), ns3::LtePdcp.DoReceivePdu(), ns3::LteEnbRrc.DoRecvHandoverCancel(), ns3::LteEnbRrc.DoRecvHandoverPreparationFailure(), ns3::LteEnbRrc.DoRecvHandoverRequestAck(), ns3::LteFfrDistributedAlgorithm.DoRecvLoadInformation(), ns3::LteEnbRrc.DoRecvLoadInformation(), ns3::LteEnbRrc.DoRecvResourceStatusUpdate(), ns3::LteEnbRrc.DoRecvSnStatusTransfer(), ns3::LteEnbRrc.DoRecvUeContextRelease(), ns3::LteEnbRrc.DoRecvUeData(), ns3::LteEnbMac.DoReleaseLc(), ns3::LteEnbMac.DoRemoveUe(), ns3::LteEnbMac.DoReportBufferStatus(), ns3::LteUeMac.DoReportBufferStatus(), ns3::NoOpComponentCarrierManager.DoReportBufferStatus(), ns3::SimpleUeComponentCarrierManager.DoReportBufferStatus(), ns3::LteTestMac.DoReportBufferStatus(), ns3::RrComponentCarrierManager.DoReportBufferStatus(), ns3::LteFfrEnhancedAlgorithm.DoReportDlCqiInfo(), ns3::LteUeRrc.DoReportUeMeasurements(), ns3::LteFfrEnhancedAlgorithm.DoReportUlCqiInfo(), LrWpanAckTestCase.DoRun(), LrWpanCollisionTestCase.DoRun(), LrWpanEdTestCase.DoRun(), LrWpanErrorDistanceTestCase.DoRun(), LrWpanDataIfsTestCase.DoRun(), TestRxOffWhenIdleAfterCsmaFailure.DoRun(), TestActiveScanPanDescriptors.DoRun(), TestOrphanScan.DoRun(), LrWpanSlottedCsmacaTestCase.DoRun(), ThreeGppSpectrumPropagationLossModelTest.DoRun(), ns3::CqaFfMacScheduler.DoSchedDlCqiInfoReq(), ns3::FdBetFfMacScheduler.DoSchedDlCqiInfoReq(), ns3::FdMtFfMacScheduler.DoSchedDlCqiInfoReq(), ns3::FdTbfqFfMacScheduler.DoSchedDlCqiInfoReq(), ns3::PfFfMacScheduler.DoSchedDlCqiInfoReq(), ns3::PssFfMacScheduler.DoSchedDlCqiInfoReq(), ns3::RrFfMacScheduler.DoSchedDlCqiInfoReq(), ns3::TdBetFfMacScheduler.DoSchedDlCqiInfoReq(), ns3::TdMtFfMacScheduler.DoSchedDlCqiInfoReq(), ns3::TdTbfqFfMacScheduler.DoSchedDlCqiInfoReq(), ns3::TtaFfMacScheduler.DoSchedDlCqiInfoReq(), ns3::CqaFfMacScheduler.DoSchedDlRachInfoReq(), ns3::FdBetFfMacScheduler.DoSchedDlRachInfoReq(), ns3::FdMtFfMacScheduler.DoSchedDlRachInfoReq(), ns3::FdTbfqFfMacScheduler.DoSchedDlRachInfoReq(), ns3::PfFfMacScheduler.DoSchedDlRachInfoReq(), ns3::PssFfMacScheduler.DoSchedDlRachInfoReq(), ns3::RrFfMacScheduler.DoSchedDlRachInfoReq(), ns3::TdBetFfMacScheduler.DoSchedDlRachInfoReq(), ns3::TdMtFfMacScheduler.DoSchedDlRachInfoReq(), ns3::TdTbfqFfMacScheduler.DoSchedDlRachInfoReq(), ns3::TtaFfMacScheduler.DoSchedDlRachInfoReq(), ns3::CqaFfMacScheduler.DoSchedDlRlcBufferReq(), ns3::FdBetFfMacScheduler.DoSchedDlRlcBufferReq(), ns3::FdMtFfMacScheduler.DoSchedDlRlcBufferReq(), ns3::FdTbfqFfMacScheduler.DoSchedDlRlcBufferReq(), ns3::PfFfMacScheduler.DoSchedDlRlcBufferReq(), ns3::PssFfMacScheduler.DoSchedDlRlcBufferReq(), ns3::RrFfMacScheduler.DoSchedDlRlcBufferReq(), ns3::TdBetFfMacScheduler.DoSchedDlRlcBufferReq(), ns3::TdMtFfMacScheduler.DoSchedDlRlcBufferReq(), ns3::TdTbfqFfMacScheduler.DoSchedDlRlcBufferReq(), ns3::TtaFfMacScheduler.DoSchedDlRlcBufferReq(), ns3::CqaFfMacScheduler.DoSchedDlTriggerReq(), ns3::FdBetFfMacScheduler.DoSchedDlTriggerReq(), ns3::FdMtFfMacScheduler.DoSchedDlTriggerReq(), ns3::FdTbfqFfMacScheduler.DoSchedDlTriggerReq(), ns3::PfFfMacScheduler.DoSchedDlTriggerReq(), ns3::PssFfMacScheduler.DoSchedDlTriggerReq(), ns3::RrFfMacScheduler.DoSchedDlTriggerReq(), ns3::TdBetFfMacScheduler.DoSchedDlTriggerReq(), ns3::TdMtFfMacScheduler.DoSchedDlTriggerReq(), ns3::TdTbfqFfMacScheduler.DoSchedDlTriggerReq(), ns3::TtaFfMacScheduler.DoSchedDlTriggerReq(), ns3::CqaFfMacScheduler.DoSchedUlCqiInfoReq(), ns3::FdBetFfMacScheduler.DoSchedUlCqiInfoReq(), ns3::FdMtFfMacScheduler.DoSchedUlCqiInfoReq(), ns3::FdTbfqFfMacScheduler.DoSchedUlCqiInfoReq(), ns3::PfFfMacScheduler.DoSchedUlCqiInfoReq(), ns3::PssFfMacScheduler.DoSchedUlCqiInfoReq(), ns3::RrFfMacScheduler.DoSchedUlCqiInfoReq(), ns3::TdBetFfMacScheduler.DoSchedUlCqiInfoReq(), ns3::TdMtFfMacScheduler.DoSchedUlCqiInfoReq(), ns3::TdTbfqFfMacScheduler.DoSchedUlCqiInfoReq(), ns3::TtaFfMacScheduler.DoSchedUlCqiInfoReq(), ns3::CqaFfMacScheduler.DoSchedUlMacCtrlInfoReq(), ns3::FdBetFfMacScheduler.DoSchedUlMacCtrlInfoReq(), ns3::FdMtFfMacScheduler.DoSchedUlMacCtrlInfoReq(), ns3::FdTbfqFfMacScheduler.DoSchedUlMacCtrlInfoReq(), ns3::PfFfMacScheduler.DoSchedUlMacCtrlInfoReq(), ns3::PssFfMacScheduler.DoSchedUlMacCtrlInfoReq(), ns3::RrFfMacScheduler.DoSchedUlMacCtrlInfoReq(), ns3::TdBetFfMacScheduler.DoSchedUlMacCtrlInfoReq(), ns3::TdMtFfMacScheduler.DoSchedUlMacCtrlInfoReq(), ns3::TdTbfqFfMacScheduler.DoSchedUlMacCtrlInfoReq(), ns3::TtaFfMacScheduler.DoSchedUlMacCtrlInfoReq(), ns3::CqaFfMacScheduler.DoSchedUlTriggerReq(), ns3::FdBetFfMacScheduler.DoSchedUlTriggerReq(), ns3::FdMtFfMacScheduler.DoSchedUlTriggerReq(), ns3::FdTbfqFfMacScheduler.DoSchedUlTriggerReq(), ns3::PfFfMacScheduler.DoSchedUlTriggerReq(), ns3::PssFfMacScheduler.DoSchedUlTriggerReq(), ns3::RrFfMacScheduler.DoSchedUlTriggerReq(), ns3::TdBetFfMacScheduler.DoSchedUlTriggerReq(), ns3::TdMtFfMacScheduler.DoSchedUlTriggerReq(), ns3::TdTbfqFfMacScheduler.DoSchedUlTriggerReq(), ns3::TtaFfMacScheduler.DoSchedUlTriggerReq(), ns3::LteUeRrc.DoSendData(), ns3::EpcX2.DoSendHandoverCancel(), ns3::EpcX2.DoSendHandoverPreparationFailure(), ns3::EpcX2.DoSendHandoverRequest(), ns3::EpcX2.DoSendHandoverRequestAck(), ns3::LteEnbRrc.DoSendLoadInformation(), ns3::EpcX2.DoSendLoadInformation(), ns3::EpcX2.DoSendResourceStatusUpdate(), ns3::EpcX2.DoSendSnStatusTransfer(), ns3::EpcX2.DoSendUeContextRelease(), ns3::EpcX2.DoSendUeData(), ns3::LteUeRrcProtocolReal.DoSetup(), ns3::LteEnbRrcProtocolReal.DoSetupUe(), ns3::LtePdcp.DoTransmitPdcpSdu(), ns3::LteEnbMac.DoTransmitPdu(), ns3::LteUeMac.DoTransmitPdu(), ns3::NoOpComponentCarrierManager.DoTransmitPdu(), ns3::SimpleUeComponentCarrierManager.DoTransmitPdu(), ns3::LteTestMac.DoTransmitPdu(), ns3::LteEnbMac.DoUeUpdateConfigurationReq(), ns3::LteEnbMac.DoUlInfoListElementHarqFeedback(), ns3::LrWpanPhy.EndRx(), ns3::LteSpectrumPhy.EndRxData(), f(), ns3::SpectrumTransmitFilter.Filter(), ns3::WimaxNetDevice.ForwardDown(), ns3::TwoRaySpectrumPropagationLossModel.GetFtrFastFading(), ns3::TwoRaySpectrumPropagationLossModel.GetFtrParameters(), ns3::MemberEpcEnbS1SapUser< C >.InitialContextSetupRequest(), ns3::LrWpanNetDevice.McpsDataIndication(), ns3::LrWpanMac.McpsDataRequest(), ns3::LrWpanMac.MlmeAssociateRequest(), ns3::LrWpanMac.MlmeAssociateResponse(), ns3::LrWpanMac.MlmeOrphanResponse(), ns3::LrWpanMac.MlmeScanRequest(), ns3::LrWpanMac.MlmeStartRequest(), ns3::LrWpanMac.MlmeSyncRequest(), ns3::HePhy.NotifyEndOfHeSigA(), ns3::LteRlcSpecificLteMacSapUser.NotifyTxOpportunity(), OrphanIndication(), TestOrphanScan.OrphanIndicationCoord(), p_e2(), ns3::MemberEpcEnbS1SapProvider< C >.PathSwitchRequest(), ns3::MemberEpcEnbS1SapUser< C >.PathSwitchRequestAcknowledge(), ns3::LrWpanMac.PdDataIndication(), PollConfirm(), ns3::UeManager.PrepareHandover(), ns3::HePhy.ProcessSigA(), ns3::ConstantObssPdAlgorithm.ReceiveHeSigA(), ns3::LteUePhy.ReceiveLteControlMessageList(), ns3::LtePdcpSpecificLtePdcpSapUser< C >.ReceivePdcpSdu(), ns3::LteRlcSpecificLteMacSapUser.ReceivePdu(), ns3::EpcX2.RecvFromX2cSocket(), ns3::EpcX2.RecvFromX2uSocket(), ns3::EpcX2SpecificEpcX2SapUser< C >.RecvHandoverCancel(), ns3::EpcX2SpecificEpcX2SapUser< C >.RecvHandoverPreparationFailure(), ns3::EpcX2SpecificEpcX2SapUser< C >.RecvHandoverRequest(), ns3::UeManager.RecvHandoverRequestAck(), ns3::EpcX2SpecificEpcX2SapUser< C >.RecvHandoverRequestAck(), ns3::MemberLteFfrRrcSapProvider< C >.RecvLoadInformation(), ns3::EpcX2SpecificEpcX2SapUser< C >.RecvLoadInformation(), ns3::EpcX2SpecificEpcX2SapUser< C >.RecvResourceStatusUpdate(), ns3::UeManager.RecvRrcConnectionReconfigurationCompleted(), ns3::UeManager.RecvSnStatusTransfer(), ns3::EpcX2SpecificEpcX2SapUser< C >.RecvSnStatusTransfer(), ns3::EpcX2SpecificEpcX2SapUser< C >.RecvUeContextRelease(), ns3::EpcX2SpecificEpcX2SapUser< C >.RecvUeData(), ns3::SimpleUeCcmMacSapProvider.ReportBufferStatus(), ns3::EnbMacMemberLteMacSapProvider< C >.ReportBufferStatus(), ns3::UeMemberLteMacSapProvider.ReportBufferStatus(), ns3::MemberLteFfrSapProvider< C >.ReportDlCqiInfo(), ns3::MemberLteUeCphySapUser< C >.ReportUeMeasurements(), ns3::MemberLteFfrSapProvider< C >.ReportUlCqiInfo(), ns3::ObssPdAlgorithm.ResetPhy(), ns3::EnbRrcMemberLteEnbCmacSapUser.RrcConfigurationUpdateInd(), Experiment.Run(), TestActiveScanPanDescriptors.ScanConfirm(), TestOrphanScan.ScanConfirm(), ScanConfirm(), ns3::EnbMacMemberFfMacSchedSapUser.SchedDlConfigInd(), ns3::MemberSchedSapProvider< C >.SchedDlCqiInfoReq(), ns3::MemberSchedSapProvider< C >.SchedDlMacBufferReq(), ns3::MemberSchedSapProvider< C >.SchedDlPagingBufferReq(), ns3::MemberSchedSapProvider< C >.SchedDlRachInfoReq(), ns3::MemberSchedSapProvider< C >.SchedDlRlcBufferReq(), ns3::MemberSchedSapProvider< C >.SchedDlTriggerReq(), ns3::EnbMacMemberFfMacSchedSapUser.SchedUlConfigInd(), ns3::MemberSchedSapProvider< C >.SchedUlCqiInfoReq(), ns3::MemberSchedSapProvider< C >.SchedUlMacCtrlInfoReq(), ns3::MemberSchedSapProvider< C >.SchedUlNoiseInterferenceReq(), ns3::MemberSchedSapProvider< C >.SchedUlSrInfoReq(), ns3::MemberSchedSapProvider< C >.SchedUlTriggerReq(), ns3::SimpleOfdmWimaxPhy.Send(), ns3::UeManager.SendData(), ns3::EpcX2SpecificEpcX2SapProvider< C >.SendHandoverCancel(), ns3::EpcX2SpecificEpcX2SapProvider< C >.SendHandoverPreparationFailure(), ns3::EpcX2SpecificEpcX2SapProvider< C >.SendHandoverRequest(), ns3::EpcX2SpecificEpcX2SapProvider< C >.SendHandoverRequestAck(), ns3::MemberLteFfrRrcSapUser< C >.SendLoadInformation(), ns3::EpcX2SpecificEpcX2SapProvider< C >.SendLoadInformation(), ns3::LteFfrDistributedAlgorithm.SendLoadInformation(), ns3::UeManager.SendPacket(), ns3::EpcX2SpecificEpcX2SapProvider< C >.SendResourceStatusUpdate(), ns3::EpcX2SpecificEpcX2SapProvider< C >.SendSnStatusTransfer(), ns3::EpcX2SpecificEpcX2SapProvider< C >.SendUeContextRelease(), ns3::EpcX2SpecificEpcX2SapProvider< C >.SendUeData(), ns3::StaWifiMac.SetEdcaParameters(), ns3::StaWifiMac.SetMuEdcaParameters(), ns3::MgtAddBaRequestHeader.SetParameterSet(), ns3::MgtAddBaResponseHeader.SetParameterSet(), ns3::MgtDelBaHeader.SetParameterSet(), ns3::MemberLteUeRrcSapUser< C >.Setup(), ns3::MemberLteEnbRrcSapUser< C >.SetupUe(), StartConfirm(), ns3::RemSpectrumPhy.StartRx(), ns3::SpectrumAnalyzer.StartRx(), ns3::TvSpectrumTransmitter.StartRx(), ns3::WaveformGenerator.StartRx(), ns3::WifiSpectrumPhyInterface.StartRx(), ns3::MultiModelSpectrumChannel.StartRx(), ns3::SingleModelSpectrumChannel.StartRx(), ns3::LteSpectrumPhy.StartRxData(), ns3::LteEnbPhy.StartSubFrame(), ns3::WifiSpectrumPhyInterface.StartTx(), LrWpanSlottedCsmacaTestCase.TransEndIndication(), TransEndIndication(), ns3::CqaFfMacScheduler.TransmissionModeConfigurationUpdate(), ns3::FdBetFfMacScheduler.TransmissionModeConfigurationUpdate(), ns3::FdMtFfMacScheduler.TransmissionModeConfigurationUpdate(), ns3::FdTbfqFfMacScheduler.TransmissionModeConfigurationUpdate(), ns3::PfFfMacScheduler.TransmissionModeConfigurationUpdate(), ns3::PssFfMacScheduler.TransmissionModeConfigurationUpdate(), ns3::RrFfMacScheduler.TransmissionModeConfigurationUpdate(), ns3::TdBetFfMacScheduler.TransmissionModeConfigurationUpdate(), ns3::TdMtFfMacScheduler.TransmissionModeConfigurationUpdate(), ns3::TdTbfqFfMacScheduler.TransmissionModeConfigurationUpdate(), ns3::TtaFfMacScheduler.TransmissionModeConfigurationUpdate(), ns3::LteRlcSpecificLteRlcSapProvider< C >.TransmitPdcpPdu(), ns3::LtePdcpSpecificLtePdcpSapProvider< C >.TransmitPdcpSdu(), ns3::SimpleUeCcmMacSapProvider.TransmitPdu(), ns3::EnbMacMemberLteMacSapProvider< C >.TransmitPdu(), ns3::UeMemberLteMacSapProvider.TransmitPdu(), ns3::EnbMacMemberLteEnbCmacSapProvider.UeUpdateConfigurationReq(), ns3::EnbMacMemberLteEnbPhySapUser.UlInfoListElementHarqFeedback(), ns3::PhyRxStatsCalculator.UlPhyReception(), ns3::PhyRxStatsCalculator.UlPhyReceptionCallback(), ns3::PhyTxStatsCalculator.UlPhyTransmission(), and ns3::PhyTxStatsCalculator.UlPhyTransmissionCallback().

◆ parents

two-ray-to-three-gpp-ch-calibration.parents

Definition at line 576 of file two-ray-to-three-gpp-ch-calibration.py.

◆ parser

two-ray-to-three-gpp-ch-calibration.parser = argp.ArgumentParser(formatter_class=argp.ArgumentDefaultsHelpFormatter)

Definition at line 35 of file two-ray-to-three-gpp-ch-calibration.py.

◆ plot_fit_results

two-ray-to-three-gpp-ch-calibration.plot_fit_results = bool(args.plot_fit_results)

Definition at line 106 of file two-ray-to-three-gpp-ch-calibration.py.

◆ preliminary_fit_test

two-ray-to-three-gpp-ch-calibration.preliminary_fit_test = bool(args.preliminary_fit_test)

Definition at line 100 of file two-ray-to-three-gpp-ch-calibration.py.

◆ rc

◆ ref_data

two-ray-to-three-gpp-ch-calibration.ref_data = df.query(data_query)

Definition at line 585 of file two-ray-to-three-gpp-ch-calibration.py.

◆ ref_data_fname

two-ray-to-three-gpp-ch-calibration.ref_data_fname = args.ref_data_fname

Definition at line 90 of file two-ray-to-three-gpp-ch-calibration.py.

◆ res

two-ray-to-three-gpp-ch-calibration.res
Initial value:
1 = joblib.Parallel(n_jobs=10)(
2  joblib.delayed(fit_ftr_to_reference)(
3  df, params_comb, num_search_grid_params, num_refinements
4  )
5  for params_comb in product(scenarios, is_los, frequencies)
6  )

Definition at line 549 of file two-ray-to-three-gpp-ch-calibration.py.

Referenced by SpectrumConverterTestSuite.SpectrumConverterTestSuite(), nlohmann::json_pointer< BasicJsonType >.array_index(), ns3::UanMacRc.Associate(), ns3::UanMacRc.AssociateTimeout(), nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer, BinaryType >.binary(), ns3::UeManager.BuildHoCancelMsg(), ns3::UeManager.BuildHoPrepFailMsg(), ns3::tests::SplitStringTestCase.Check(), ns3::UanMacRc.CreateRtsHeader(), ns3::PbbMessageIpv6.DeserializeOriginatorAddress(), ns3::SimpleUeComponentCarrierManager.DoAddLc(), ns3::LteEnbRrc.DoRecvHandoverRequest(), ns3::NoOpComponentCarrierManager.DoReleaseDataRadioBearer(), ns3::SimpleUeComponentCarrierManager.DoRemoveLc(), ns3::TcpSocketBase.DoRetransmit(), ns3::NoOpComponentCarrierManager.DoSetupDataRadioBearer(), nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer, BinaryType >.emplace(), nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer, BinaryType >.from_bson(), nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer, BinaryType >.from_cbor(), nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer, BinaryType >.from_msgpack(), nlohmann::basic_json< ObjectType, ArrayType, StringType, BooleanType, NumberIntegerType, NumberUnsignedType, NumberFloatType, AllocatorType, JSONSerializer, BinaryType >.from_ubjson(), nlohmann::detail::input_stream_adapter.get_character(), nlohmann::detail::binary_reader< BasicJsonType, InputAdapterType, SAX >.get_ubjson_high_precision_number(), ns3::CtrlBAckResponseHeader.GetBaControl(), ns3::CtrlBAckRequestHeader.GetBarControl(), ns3::MgtAddBaRequestHeader.GetParameterSet(), ns3::MgtAddBaResponseHeader.GetParameterSet(), ns3::MgtDelBaHeader.GetParameterSet(), ns3.load_clicked_attribute(), ns3.load_clicked_default(), ns3::MatrixArray< T >.MultiplyByLeftAndRightMatrix(), ns3::MatrixArray< T >.operator*(), ns3::SpectrumValue.operator<<(), ns3::SpectrumValue.operator>>(), ns3::SqliteDataOutput.Output(), nlohmann::json_pointer< BasicJsonType >.parent_pointer(), ns3::UanMacRc.RtsTimeout(), ns3.save_clicked_attribute(), ns3.save_clicked_default(), nlohmann::detail::parser< BasicJsonType, InputAdapterType >.sax_parse_internal(), ns3::UanMacRc.SendRts(), ns3::LteEnbComponentCarrierManager.SetCcmMacSapProviders(), ns3::LrWpanMacHeader.SetFrmCtrlRes(), ns3::LteEnbComponentCarrierManager.SetMacSapProvider(), ns3::LrWpanMacHeader.SetSecCtrlReserved(), and ns3::MatrixArray< T >.Transpose().

◆ scenarios

two-ray-to-three-gpp-ch-calibration.scenarios = set(df["scen"])

Definition at line 505 of file two-ray-to-three-gpp-ch-calibration.py.

◆ sigma

◆ start

two-ray-to-three-gpp-ch-calibration.start

Definition at line 520 of file two-ray-to-three-gpp-ch-calibration.py.

Referenced by ns3::ByteTagList::Iterator.Iterator(), ns3::TagBuffer.TagBuffer(), TestWifiSubElement.TestWifiSubElement(), ns3::TcpRxBuffer.Add(), ns3::ByteTagList.Add(), ns3::Buffer.AddAtStart(), ns3::Packet.AddByteTag(), PacketTagListTest.AddRemoveTime(), ns3::PbbMessageIpv4.AddressBlockDeserialize(), ns3::PbbMessageIpv6.AddressBlockDeserialize(), ns3::PacketMetadata.AddToRaw(), ns3::PacketMetadata.AddToRawU16(), ns3::PacketMetadata.AddToRawU32(), ns3::PacketMetadata.AddToRawU64(), ns3::PacketMetadata.AddToRawU8(), Experiment.ApplicationSetup(), ns3::MobilityModel.AssignStreams(), ns3::UanPhyCalcSinrFhFsk.CalcSinrDb(), ns3::InterferenceHelper.CalculatePhyHeaderSectionPsr(), ns3::Buffer::Iterator.CheckNoZero(), Ns3TcpCubicTestCase.CheckValues(), ns3::WifiSpectrumValueHelper.CreateDuplicated20MhzTxPowerSpectralDensity(), ns3::PacketMetadata.CreateFragment(), ns3::Buffer.CreateFragment(), ns3::Packet.CreateFragment(), ns3::WifiSpectrumValueHelper.CreateHeOfdmTxPowerSpectralDensity(), ns3::WifiSpectrumValueHelper.CreateHtOfdmTxPowerSpectralDensity(), ns3::PbbTlvBlock.Deserialize(), ns3::PbbAddressTlvBlock.Deserialize(), ns3::PbbMessage.Deserialize(), ns3::PbbAddressBlock.Deserialize(), ns3::PbbTlv.Deserialize(), ns3::WifiInformationElement.Deserialize(), ns3::HttpHeader.Deserialize(), ns3::QKDAppHeader.Deserialize(), ns3::CapabilityInformation.Deserialize(), ns3::CtrlTriggerUserInfoField.Deserialize(), ns3::EhtMacCapabilities.Deserialize(), ns3::EhtPhyCapabilities.Deserialize(), ns3::EhtPpeThresholds.Deserialize(), ns3::EhtOperation::EhtOpParams.Deserialize(), ns3::EhtOperation::EhtBasicMcsNssSet.Deserialize(), ns3::TidToLinkMapping::Control.Deserialize(), ns3::StatusCode.Deserialize(), ns3::WifiMgtHeader< Derived, std::tuple< Elems... > >.Deserialize(), ns3::aodv::TypeHeader.Deserialize(), ns3::aodv::RreqHeader.Deserialize(), ns3::aodv::RrepHeader.Deserialize(), ns3::aodv::RrepAckHeader.Deserialize(), ns3::aodv::RerrHeader.Deserialize(), ns3::SeqTsEchoHeader.Deserialize(), ns3::SeqTsHeader.Deserialize(), ns3::SeqTsSizeHeader.Deserialize(), ns3::ThreeGppHttpHeader.Deserialize(), ns3::dsdv::DsdvHeader.Deserialize(), ns3::dsr::DsrFsHeader.Deserialize(), ns3::dsr::DsrRoutingHeader.Deserialize(), ns3::dsr::DsrOptionHeader.Deserialize(), ns3::dsr::DsrOptionPad1Header.Deserialize(), ns3::dsr::DsrOptionPadnHeader.Deserialize(), ns3::dsr::DsrOptionRreqHeader.Deserialize(), ns3::dsr::DsrOptionRrepHeader.Deserialize(), ns3::dsr::DsrOptionSRHeader.Deserialize(), ns3::dsr::DsrOptionRerrHeader.Deserialize(), ns3::dsr::DsrOptionRerrUnreachHeader.Deserialize(), ns3::dsr::DsrOptionRerrUnsupportedHeader.Deserialize(), ns3::dsr::DsrOptionAckReqHeader.Deserialize(), ns3::dsr::DsrOptionAckHeader.Deserialize(), ns3::DhcpHeader.Deserialize(), ns3::ArpHeader.Deserialize(), ns3::Icmpv4Header.Deserialize(), ns3::Icmpv4Echo.Deserialize(), ns3::Icmpv4DestinationUnreachable.Deserialize(), ns3::Icmpv4TimeExceeded.Deserialize(), ns3::Icmpv6Header.Deserialize(), ns3::Icmpv6OptionHeader.Deserialize(), ns3::Icmpv6NS.Deserialize(), ns3::Icmpv6NA.Deserialize(), ns3::Icmpv6RA.Deserialize(), ns3::Icmpv6RS.Deserialize(), ns3::Icmpv6Redirection.Deserialize(), ns3::Icmpv6Echo.Deserialize(), ns3::Icmpv6DestinationUnreachable.Deserialize(), ns3::Icmpv6TooBig.Deserialize(), ns3::Icmpv6TimeExceeded.Deserialize(), ns3::Icmpv6ParameterError.Deserialize(), ns3::Icmpv6OptionMtu.Deserialize(), ns3::Icmpv6OptionPrefixInformation.Deserialize(), ns3::Icmpv6OptionLinkLayerAddress.Deserialize(), ns3::Icmpv6OptionRedirected.Deserialize(), ns3::Ipv4Header.Deserialize(), ns3::Ipv6ExtensionHeader.Deserialize(), ns3::Ipv6ExtensionHopByHopHeader.Deserialize(), ns3::Ipv6ExtensionDestinationHeader.Deserialize(), ns3::Ipv6ExtensionFragmentHeader.Deserialize(), ns3::Ipv6ExtensionRoutingHeader.Deserialize(), ns3::Ipv6ExtensionLooseRoutingHeader.Deserialize(), ns3::Ipv6Header.Deserialize(), ns3::Ipv6OptionHeader.Deserialize(), ns3::Ipv6OptionPad1Header.Deserialize(), ns3::Ipv6OptionPadnHeader.Deserialize(), ns3::Ipv6OptionJumbogramHeader.Deserialize(), ns3::Ipv6OptionRouterAlertHeader.Deserialize(), ns3::RipHeader.Deserialize(), ns3::RipNgHeader.Deserialize(), ns3::TcpHeader.Deserialize(), ns3::TcpOptionEnd.Deserialize(), ns3::TcpOptionNOP.Deserialize(), ns3::TcpOptionMSS.Deserialize(), ns3::TcpOptionSackPermitted.Deserialize(), ns3::TcpOptionSack.Deserialize(), ns3::TcpOptionTS.Deserialize(), ns3::TcpOptionWinScale.Deserialize(), ns3::TcpOptionUnknown.Deserialize(), ns3::UdpHeader.Deserialize(), ns3::LrWpanMacHeader.Deserialize(), ns3::BeaconPayloadHeader.Deserialize(), ns3::CommandPayloadHeader.Deserialize(), ns3::LrWpanMacTrailer.Deserialize(), ns3::GtpcHeader.Deserialize(), ns3::GtpcCreateSessionRequestMessage.Deserialize(), ns3::GtpcCreateSessionResponseMessage.Deserialize(), ns3::GtpcModifyBearerRequestMessage.Deserialize(), ns3::GtpcModifyBearerResponseMessage.Deserialize(), ns3::GtpcDeleteBearerCommandMessage.Deserialize(), ns3::GtpcDeleteBearerRequestMessage.Deserialize(), ns3::GtpcDeleteBearerResponseMessage.Deserialize(), ns3::GtpuHeader.Deserialize(), ns3::EpcX2Header.Deserialize(), ns3::EpcX2HandoverRequestHeader.Deserialize(), ns3::EpcX2HandoverRequestAckHeader.Deserialize(), ns3::EpcX2HandoverPreparationFailureHeader.Deserialize(), ns3::EpcX2SnStatusTransferHeader.Deserialize(), ns3::EpcX2UeContextReleaseHeader.Deserialize(), ns3::EpcX2LoadInformationHeader.Deserialize(), ns3::EpcX2ResourceStatusUpdateHeader.Deserialize(), ns3::EpcX2HandoverCancelHeader.Deserialize(), ns3::LtePdcpHeader.Deserialize(), ns3::LteRlcAmHeader.Deserialize(), ns3::LteRlcHeader.Deserialize(), ns3::IdealHandoverPreparationInfoHeader.Deserialize(), ns3::IdealHandoverCommandHeader.Deserialize(), ns3::dot11s::MeshHeader.Deserialize(), ns3::dot11s::PeerLinkOpenStart.Deserialize(), ns3::dot11s::PeerLinkCloseStart.Deserialize(), ns3::dot11s::PeerLinkConfirmStart.Deserialize(), ns3::flame::FlameHeader.Deserialize(), MyHeader.Deserialize(), anonymous_namespace{packet-metadata-test.cc}::HistoryHeader< N >.Deserialize(), anonymous_namespace{packet-metadata-test.cc}::HistoryTrailer< N >.Deserialize(), ns3::EthernetHeader.Deserialize(), ns3::LlcSnapHeader.Deserialize(), ns3::PbbPacket.Deserialize(), ns3::RadiotapHeader.Deserialize(), ns3::SllHeader.Deserialize(), ns3::olsr::PacketHeader.Deserialize(), ns3::olsr::MessageHeader.Deserialize(), ns3::PppHeader.Deserialize(), ns3::SixLowPanHc1.Deserialize(), ns3::SixLowPanFrag1.Deserialize(), ns3::SixLowPanFragN.Deserialize(), ns3::SixLowPanIpv6.Deserialize(), ns3::SixLowPanIphc.Deserialize(), ns3::SixLowPanNhcExtension.Deserialize(), ns3::SixLowPanUdpNhcExtension.Deserialize(), ns3::SixLowPanBc0.Deserialize(), ns3::SixLowPanMesh.Deserialize(), ns3::AlohaNoackMacHeader.Deserialize(), ns3::UanHeaderCommon.Deserialize(), ns3::UanHeaderRcData.Deserialize(), ns3::UanHeaderRcRts.Deserialize(), ns3::UanHeaderRcCtsGlobal.Deserialize(), ns3::UanHeaderRcCts.Deserialize(), ns3::UanHeaderRcAck.Deserialize(), ns3::AmpduSubframeHeader.Deserialize(), ns3::AmsduSubframeHeader.Deserialize(), ns3::CtrlBAckRequestHeader.Deserialize(), ns3::CtrlBAckResponseHeader.Deserialize(), ns3::CtrlTriggerHeader.Deserialize(), ns3::WifiActionHeader.Deserialize(), ns3::MgtAddBaRequestHeader.Deserialize(), ns3::MgtAddBaResponseHeader.Deserialize(), ns3::MgtDelBaHeader.Deserialize(), ns3::MgtEmlOmn.Deserialize(), ns3::WifiMacHeader.Deserialize(), ns3::Dcd.Deserialize(), ns3::DlMap.Deserialize(), ns3::ManagementMessageType.Deserialize(), ns3::RngRsp.Deserialize(), ns3::DsaReq.Deserialize(), ns3::DsaRsp.Deserialize(), ns3::DsaAck.Deserialize(), ns3::RngReq.Deserialize(), ns3::OfdmDownlinkFramePrefix.Deserialize(), ns3::Ucd.Deserialize(), ns3::UlMap.Deserialize(), ns3::GenericMacHeader.Deserialize(), ns3::BandwidthRequestHeader.Deserialize(), ns3::GrantManagementSubheader.Deserialize(), ns3::FragmentationSubheader.Deserialize(), BenchHeader< N >.Deserialize(), ns3::EhtOperation::EhtOpInfo.Deserialize(), ns3::EhtMcsAndNssSet.Deserialize(), ns3::Chunk.Deserialize(), ns3::MeshInformationElementVector.Deserialize(), ns3::CommonInfoBasicMle.Deserialize(), ns3::dsr::DsrOptionField.Deserialize(), ns3::OptionField.Deserialize(), ns3::olsr::MessageHeader::Mid.Deserialize(), ns3::olsr::MessageHeader::Hello.Deserialize(), ns3::olsr::MessageHeader::Tc.Deserialize(), ns3::olsr::MessageHeader::Hna.Deserialize(), ns3::ByteTagList.Deserialize(), ns3::PacketMetadata.Deserialize(), ns3::CtrlBAckResponseHeader.DeserializeBitmap(), ns3::MgtHeaderInPerStaProfile< Derived, std::tuple< Elems... > >.DeserializeFromPerStaProfile(), ns3::MgtHeaderInPerStaProfile< Derived, std::tuple< Elems... > >.DeserializeFromPerStaProfileImpl(), ns3::MgtAssocRequestHeader.DeserializeFromPerStaProfileImpl(), ns3::MgtAssocResponseHeader.DeserializeFromPerStaProfileImpl(), ns3::MgtReassocRequestHeader.DeserializeFromPerStaProfileImpl(), ns3::WifiInformationElement.DeserializeIfPresent(), ns3::MgtAssocRequestHeader.DeserializeImpl(), ns3::MgtReassocRequestHeader.DeserializeImpl(), ns3::MgtAssocResponseHeader.DeserializeImpl(), ns3::MgtProbeResponseHeader.DeserializeImpl(), ns3::WifiMgtHeader< Derived, std::tuple< Elems... > >.DeserializeImpl(), ns3::dot11s::IeBeaconTiming.DeserializeInformationField(), ns3::dot11s::IeConfiguration.DeserializeInformationField(), ns3::dot11s::IePeerManagement.DeserializeInformationField(), ns3::dot11s::IePeeringProtocol.DeserializeInformationField(), ns3::dot11s::IePreq.DeserializeInformationField(), ns3::dot11s::IeMeshId.DeserializeInformationField(), ns3::dot11s::IeLinkMetricReport.DeserializeInformationField(), ns3::dot11s::IePerr.DeserializeInformationField(), ns3::dot11s::IePrep.DeserializeInformationField(), ns3::dot11s::IeRann.DeserializeInformationField(), ns3::AddbaExtension.DeserializeInformationField(), ns3::EdcaParameterSet.DeserializeInformationField(), ns3::EhtCapabilities.DeserializeInformationField(), ns3::EhtOperation.DeserializeInformationField(), ns3::MultiLinkElement.DeserializeInformationField(), ns3::MultiLinkElement::PerStaProfileSubelement.DeserializeInformationField(), ns3::TidToLinkMapping.DeserializeInformationField(), ns3::ExtendedCapabilities.DeserializeInformationField(), ns3::HeCapabilities.DeserializeInformationField(), ns3::HeOperation.DeserializeInformationField(), ns3::MuEdcaParameterSet.DeserializeInformationField(), ns3::HtCapabilities.DeserializeInformationField(), ns3::HtOperation.DeserializeInformationField(), ns3::DsssParameterSet.DeserializeInformationField(), ns3::ErpInformation.DeserializeInformationField(), ns3::NonInheritance.DeserializeInformationField(), ns3::ReducedNeighborReport.DeserializeInformationField(), ns3::Ssid.DeserializeInformationField(), ns3::SupportedRates.DeserializeInformationField(), ns3::VhtCapabilities.DeserializeInformationField(), ns3::VhtOperation.DeserializeInformationField(), TestWifiSubElement.DeserializeInformationField(), TestWifiInformationElement.DeserializeInformationField(), ns3::PbbMessage.DeserializeMessage(), ns3::PbbMessageIpv4.DeserializeOriginatorAddress(), ns3::PbbMessageIpv6.DeserializeOriginatorAddress(), ns3::MeshInformationElementVector.DeserializeSingleIe(), PacketTest.DoCheck(), PacketTest.DoCheckData(), ns3::WifiMgtHeader< Derived, std::tuple< Elems... > >.DoDeserialize(), ns3::OfdmDcdChannelEncodings.DoRead(), ns3::OfdmUcdChannelEncodings.DoRead(), LookupTimeTestCase.DoRun(), ns3::internal.DoSerialize(), ns3::OfdmDcdChannelEncodings.DoWrite(), ns3::OfdmUcdChannelEncodings.DoWrite(), FillHistoRangeUniformly(), ns3::WifiPhyOperatingChannel.FindFirst(), ns3::CtrlTriggerHeader.FindUserInfoWithAid(), ns3::CtrlTriggerHeader.FindUserInfoWithRaRuAssociated(), ns3::CtrlTriggerHeader.FindUserInfoWithRaRuUnassociated(), ns3::PhyEntity.GetPhyHeaderSections(), WifiOfdmMaskSlopesTestCase.InterpolateAndAppendValues(), WifiPhyThresholdsTest.PhyStateChanged(), PhyStateTrace(), ns3::AthstatsWifiTraceSink.PhyStateTrace(), ns3::Packet.Print(), ns3::DcdChannelEncodings.Read(), ns3::OfdmDlBurstProfile.Read(), ns3::OfdmDlMapIe.Read(), ns3::DlFramePrefixIe.Read(), ns3::UcdChannelEncodings.Read(), ns3::OfdmUlBurstProfile.Read(), ns3::OfdmUlMapIe.Read(), ns3::Buffer::Iterator.Read(), ns3::PacketMetadata.ReadFromRawU16(), ns3::PacketMetadata.ReadFromRawU32(), ns3::PacketMetadata.ReadFromRawU64(), ns3::PacketMetadata.ReadFromRawU8(), ns3::Buffer.RemoveAtStart(), ns3::PacketMetadata.RemoveAtStart(), PacketTagListTest.RemoveTime(), ns3::PacketMetadata.ReserveCopy(), Experiment.Run(), RunBothModes(), LargestIdlePrimaryChannelTest.RunOne(), Experiment.SendMultiDestinations(), ns3::PbbTlvBlock.Serialize(), ns3::PbbAddressTlvBlock.Serialize(), ns3::PbbMessage.Serialize(), ns3::PbbAddressBlock.Serialize(), ns3::PbbTlv.Serialize(), ns3::EhtMacCapabilities.Serialize(), ns3::EhtPhyCapabilities.Serialize(), ns3::EhtMcsAndNssSet.Serialize(), ns3::EhtPpeThresholds.Serialize(), ns3::EhtOperation::EhtOpParams.Serialize(), ns3::EhtOperation::EhtOpInfo.Serialize(), ns3::EhtOperation::EhtBasicMcsNssSet.Serialize(), ns3::CommonInfoBasicMle.Serialize(), ns3::TidToLinkMapping::Control.Serialize(), ns3::HttpHeader.Serialize(), ns3::dsr::DsrOptionField.Serialize(), ns3::OptionField.Serialize(), ns3::olsr::MessageHeader::Mid.Serialize(), ns3::olsr::MessageHeader::Hello.Serialize(), ns3::olsr::MessageHeader::Tc.Serialize(), ns3::olsr::MessageHeader::Hna.Serialize(), ns3::CapabilityInformation.Serialize(), ns3::CtrlTriggerUserInfoField.Serialize(), ns3::StatusCode.Serialize(), ns3::WifiMgtHeader< Derived, std::tuple< Elems... > >.Serialize(), ns3::SeqTsEchoHeader.Serialize(), ns3::SeqTsHeader.Serialize(), ns3::SeqTsSizeHeader.Serialize(), ns3::ThreeGppHttpHeader.Serialize(), ns3::dsr::DsrFsHeader.Serialize(), ns3::dsr::DsrRoutingHeader.Serialize(), ns3::dsr::DsrOptionHeader.Serialize(), ns3::dsr::DsrOptionPad1Header.Serialize(), ns3::dsr::DsrOptionPadnHeader.Serialize(), ns3::dsr::DsrOptionRreqHeader.Serialize(), ns3::dsr::DsrOptionRrepHeader.Serialize(), ns3::dsr::DsrOptionSRHeader.Serialize(), ns3::dsr::DsrOptionRerrHeader.Serialize(), ns3::dsr::DsrOptionRerrUnreachHeader.Serialize(), ns3::dsr::DsrOptionRerrUnsupportedHeader.Serialize(), ns3::dsr::DsrOptionAckReqHeader.Serialize(), ns3::dsr::DsrOptionAckHeader.Serialize(), ns3::DhcpHeader.Serialize(), ns3::ArpHeader.Serialize(), ns3::Icmpv4Header.Serialize(), ns3::Icmpv4Echo.Serialize(), ns3::Icmpv4DestinationUnreachable.Serialize(), ns3::Icmpv4TimeExceeded.Serialize(), ns3::Icmpv6Header.Serialize(), ns3::Icmpv6OptionHeader.Serialize(), ns3::Icmpv6NS.Serialize(), ns3::Icmpv6NA.Serialize(), ns3::Icmpv6RA.Serialize(), ns3::Icmpv6RS.Serialize(), ns3::Icmpv6Redirection.Serialize(), ns3::Icmpv6Echo.Serialize(), ns3::Icmpv6DestinationUnreachable.Serialize(), ns3::Icmpv6TooBig.Serialize(), ns3::Icmpv6TimeExceeded.Serialize(), ns3::Icmpv6ParameterError.Serialize(), ns3::Icmpv6OptionMtu.Serialize(), ns3::Icmpv6OptionPrefixInformation.Serialize(), ns3::Icmpv6OptionLinkLayerAddress.Serialize(), ns3::Icmpv6OptionRedirected.Serialize(), ns3::Ipv4Header.Serialize(), ns3::Ipv6ExtensionHeader.Serialize(), ns3::Ipv6ExtensionHopByHopHeader.Serialize(), ns3::Ipv6ExtensionDestinationHeader.Serialize(), ns3::Ipv6ExtensionFragmentHeader.Serialize(), ns3::Ipv6ExtensionRoutingHeader.Serialize(), ns3::Ipv6ExtensionLooseRoutingHeader.Serialize(), ns3::Ipv6Header.Serialize(), ns3::Ipv6OptionHeader.Serialize(), ns3::Ipv6OptionPad1Header.Serialize(), ns3::Ipv6OptionPadnHeader.Serialize(), ns3::Ipv6OptionJumbogramHeader.Serialize(), ns3::Ipv6OptionRouterAlertHeader.Serialize(), ns3::RipHeader.Serialize(), ns3::RipNgHeader.Serialize(), ns3::TcpHeader.Serialize(), ns3::TcpOptionEnd.Serialize(), ns3::TcpOptionNOP.Serialize(), ns3::TcpOptionMSS.Serialize(), ns3::TcpOptionSackPermitted.Serialize(), ns3::TcpOptionSack.Serialize(), ns3::TcpOptionTS.Serialize(), ns3::TcpOptionWinScale.Serialize(), ns3::UdpHeader.Serialize(), OptionWithoutAlignmentHeader.Serialize(), OptionWithAlignmentHeader.Serialize(), ns3::LrWpanMacHeader.Serialize(), ns3::BeaconPayloadHeader.Serialize(), ns3::CommandPayloadHeader.Serialize(), ns3::LrWpanMacTrailer.Serialize(), ns3::GtpcCreateSessionRequestMessage.Serialize(), ns3::GtpcCreateSessionResponseMessage.Serialize(), ns3::GtpcModifyBearerRequestMessage.Serialize(), ns3::GtpcModifyBearerResponseMessage.Serialize(), ns3::GtpcDeleteBearerCommandMessage.Serialize(), ns3::GtpcDeleteBearerRequestMessage.Serialize(), ns3::GtpcDeleteBearerResponseMessage.Serialize(), ns3::GtpuHeader.Serialize(), ns3::EpcX2Header.Serialize(), ns3::EpcX2HandoverRequestHeader.Serialize(), ns3::EpcX2HandoverRequestAckHeader.Serialize(), ns3::EpcX2HandoverPreparationFailureHeader.Serialize(), ns3::EpcX2SnStatusTransferHeader.Serialize(), ns3::EpcX2UeContextReleaseHeader.Serialize(), ns3::EpcX2LoadInformationHeader.Serialize(), ns3::EpcX2ResourceStatusUpdateHeader.Serialize(), ns3::EpcX2HandoverCancelHeader.Serialize(), ns3::LtePdcpHeader.Serialize(), ns3::LteRlcAmHeader.Serialize(), ns3::LteRlcHeader.Serialize(), ns3::IdealHandoverPreparationInfoHeader.Serialize(), ns3::IdealHandoverCommandHeader.Serialize(), ns3::dot11s::MeshHeader.Serialize(), ns3::dot11s::PeerLinkOpenStart.Serialize(), ns3::dot11s::PeerLinkCloseStart.Serialize(), ns3::dot11s::PeerLinkConfirmStart.Serialize(), ns3::flame::FlameHeader.Serialize(), ns3::MeshInformationElementVector.Serialize(), MyHeader.Serialize(), anonymous_namespace{packet-metadata-test.cc}::HistoryHeader< N >.Serialize(), anonymous_namespace{packet-metadata-test.cc}::HistoryTrailer< N >.Serialize(), ns3::EthernetHeader.Serialize(), ns3::LlcSnapHeader.Serialize(), ns3::PbbPacket.Serialize(), ns3::RadiotapHeader.Serialize(), ns3::SllHeader.Serialize(), ns3::olsr::PacketHeader.Serialize(), ns3::olsr::MessageHeader.Serialize(), ns3::PppHeader.Serialize(), ns3::SixLowPanHc1.Serialize(), ns3::SixLowPanFrag1.Serialize(), ns3::SixLowPanFragN.Serialize(), ns3::SixLowPanIpv6.Serialize(), ns3::SixLowPanIphc.Serialize(), ns3::SixLowPanNhcExtension.Serialize(), ns3::SixLowPanUdpNhcExtension.Serialize(), ns3::SixLowPanBc0.Serialize(), ns3::SixLowPanMesh.Serialize(), ns3::AlohaNoackMacHeader.Serialize(), ns3::UanHeaderCommon.Serialize(), ns3::UanHeaderRcData.Serialize(), ns3::UanHeaderRcRts.Serialize(), ns3::UanHeaderRcCtsGlobal.Serialize(), ns3::UanHeaderRcCts.Serialize(), ns3::UanHeaderRcAck.Serialize(), ns3::CtrlBAckRequestHeader.Serialize(), ns3::CtrlBAckResponseHeader.Serialize(), ns3::CtrlTriggerHeader.Serialize(), ns3::WifiActionHeader.Serialize(), ns3::MgtAddBaRequestHeader.Serialize(), ns3::MgtAddBaResponseHeader.Serialize(), ns3::MgtDelBaHeader.Serialize(), ns3::MgtEmlOmn.Serialize(), ns3::WifiMacTrailer.Serialize(), ns3::Dcd.Serialize(), ns3::DlMap.Serialize(), ns3::ManagementMessageType.Serialize(), ns3::RngRsp.Serialize(), ns3::DsaReq.Serialize(), ns3::DsaRsp.Serialize(), ns3::DsaAck.Serialize(), ns3::RngReq.Serialize(), ns3::OfdmDownlinkFramePrefix.Serialize(), ns3::Ucd.Serialize(), ns3::UlMap.Serialize(), ns3::GenericMacHeader.Serialize(), ns3::BandwidthRequestHeader.Serialize(), ns3::GrantManagementSubheader.Serialize(), ns3::FragmentationSubheader.Serialize(), BenchHeader< N >.Serialize(), ns3::PacketMetadata.Serialize(), ns3::CtrlBAckResponseHeader.SerializeBitmap(), ns3::MgtAssocRequestHeader.SerializeImpl(), ns3::MgtReassocRequestHeader.SerializeImpl(), ns3::MgtAssocResponseHeader.SerializeImpl(), ns3::MgtProbeResponseHeader.SerializeImpl(), ns3::WifiMgtHeader< Derived, std::tuple< Elems... > >.SerializeImpl(), ns3::AddbaExtension.SerializeInformationField(), ns3::EdcaParameterSet.SerializeInformationField(), ns3::EhtCapabilities.SerializeInformationField(), ns3::EhtOperation.SerializeInformationField(), ns3::MultiLinkElement.SerializeInformationField(), ns3::MultiLinkElement::PerStaProfileSubelement.SerializeInformationField(), ns3::TidToLinkMapping.SerializeInformationField(), ns3::ExtendedCapabilities.SerializeInformationField(), ns3::HeCapabilities.SerializeInformationField(), ns3::HeOperation.SerializeInformationField(), ns3::MuEdcaParameterSet.SerializeInformationField(), ns3::HtCapabilities.SerializeInformationField(), ns3::HtOperation.SerializeInformationField(), ns3::DsssParameterSet.SerializeInformationField(), ns3::ErpInformation.SerializeInformationField(), ns3::NonInheritance.SerializeInformationField(), ns3::ReducedNeighborReport.SerializeInformationField(), ns3::Ssid.SerializeInformationField(), ns3::SupportedRates.SerializeInformationField(), ns3::VhtCapabilities.SerializeInformationField(), ns3::VhtOperation.SerializeInformationField(), TestWifiSubElement.SerializeInformationField(), TestWifiInformationElement.SerializeInformationField(), ns3::MgtHeaderInPerStaProfile< Derived, std::tuple< Elems... > >.SerializeInPerStaProfile(), ns3::MgtHeaderInPerStaProfile< Derived, std::tuple< Elems... > >.SerializeInPerStaProfileImpl(), ns3::MgtAssocRequestHeader.SerializeInPerStaProfileImpl(), ns3::MgtAssocResponseHeader.SerializeInPerStaProfileImpl(), ns3::MgtReassocRequestHeader.SerializeInPerStaProfileImpl(), ns3::PbbMessageIpv4.SerializeOriginatorAddress(), ns3::PbbMessageIpv6.SerializeOriginatorAddress(), ns3::Application.SetStartTime(), ns3::WifiPhy.SetTxPowerStart(), ns3::PbbTlv.SetValue(), nlohmann::json_pointer< BasicJsonType >.split(), ns3::ApplicationContainer.Start(), ns3::ApplicationContainer.StartWithJitter(), ns3::RawTextConfigLoad.Strip(), ns3::UanPdp.SumTapsFromMaxC(), ns3::UanPdp.SumTapsFromMaxNc(), TcpOptionWSTestCase.TestDeserialize(), TcpOptionTSTestCase.TestDeserialize(), TestDeterministicByTime(), ns3::Hash::Example::Dictionary.TimeOne(), ns3::HeapScheduler.TopDown(), ns3::test::RandomVariable::TestCaseBase.UniformHistogramBins(), ns3::DcdChannelEncodings.Write(), ns3::OfdmDlBurstProfile.Write(), ns3::OfdmDlMapIe.Write(), ns3::DlFramePrefixIe.Write(), ns3::UcdChannelEncodings.Write(), ns3::OfdmUlBurstProfile.Write(), ns3::OfdmUlMapIe.Write(), and ns3::Buffer::Iterator.Write().

◆ stop

◆ True

two-ray-to-three-gpp-ch-calibration.True

Definition at line 576 of file two-ray-to-three-gpp-ch-calibration.py.

◆ x

two-ray-to-three-gpp-ch-calibration.x

Definition at line 603 of file two-ray-to-three-gpp-ch-calibration.py.

Referenced by ns3::FixedRoomPositionAllocator.FixedRoomPositionAllocator(), ns3::PointToPointGridHelper.PointToPointGridHelper(), _cairo_uint_96by64_32x64_divrem(), ns3::SpectrumValue.Add(), ns3::ListPositionAllocator.Add(), ns3::Gnuplot2dDataset.Add(), ns3::Gnuplot3dDataset.Add(), ns3::dot11s::IeBeaconTiming.AidToU8(), LteEnbAntennaTestCase.BuildNameString(), RectangleClosestBorderTestCase.BuildNameString(), ns3::ThreeGppChannelConditionModel.Calculate2dDistance(), ns3::ThreeGppPropagationLossModel.Calculate2dDistance(), ns3.cell_tooltip_callback(), ns3.cell_tooltip_callback_config_default(), WrapToRangeTestCase.CheckWrappingPoint(), nlohmann::detail::external_constructor< value_t::array >.construct(), anonymous_namespace{gnuplot-example.cc}.Create2DPlotFile(), anonymous_namespace{gnuplot-example.cc}.Create2DPlotWithErrorBarsFile(), anonymous_namespace{gnuplot-example.cc}.Create3DPlotFile(), DbToNoneDb(), ns3::RadioEnvironmentMapHelper.DelayedInstall(), ns3::SpectrumValue.Divide(), PointerAttributeTestCase.DoRun(), ns3::test::RandomVariable::UniformTestCase.DoRun(), ns3::test::RandomVariable::UniformAntitheticTestCase.DoRun(), ns3::test::RandomVariable::NormalTestCase.DoRun(), ns3::test::RandomVariable::NormalAntitheticTestCase.DoRun(), ns3::test::RandomVariable::ExponentialTestCase.DoRun(), ns3::test::RandomVariable::ExponentialAntitheticTestCase.DoRun(), ns3::test::RandomVariable::ParetoTestCase.DoRun(), ns3::test::RandomVariable::ParetoAntitheticTestCase.DoRun(), ns3::test::RandomVariable::WeibullTestCase.DoRun(), ns3::test::RandomVariable::WeibullAntitheticTestCase.DoRun(), ns3::test::RandomVariable::LogNormalTestCase.DoRun(), ns3::test::RandomVariable::LogNormalAntitheticTestCase.DoRun(), ns3::test::RandomVariable::GammaTestCase.DoRun(), ns3::test::RandomVariable::GammaAntitheticTestCase.DoRun(), ns3::test::RandomVariable::ErlangTestCase.DoRun(), ns3::test::RandomVariable::ErlangAntitheticTestCase.DoRun(), ns3::test::RandomVariable::ZipfTestCase.DoRun(), ns3::test::RandomVariable::ZipfAntitheticTestCase.DoRun(), ns3::test::RandomVariable::ZetaTestCase.DoRun(), ns3::test::RandomVariable::ZetaAntitheticTestCase.DoRun(), ns3::test::RandomVariable::EmpiricalTestCase.DoRun(), ns3::test::RandomVariable::EmpiricalAntitheticTestCase.DoRun(), ns3::test::RandomVariable::BernoulliTestCase.DoRun(), ns3::test::RandomVariable::BernoulliAntitheticTestCase.DoRun(), ns3::test::RandomVariable::BinomialTestCase.DoRun(), ns3::test::RandomVariable::BinomialAntitheticTestCase.DoRun(), TcpHeaderGetSetTestCase.DoRun(), TcpOptionTSTestCase.DoRun(), ns3::DsssErrorRateModel.DqpskFunction(), DQPSKFunction(), f(), ns3::GeographicPositions.GeographicToCartesianCoordinates(), nlohmann::json_pointer< BasicJsonType >.get_unchecked(), ns3::ThreeGppChannelModel.GetChannel(), ns3::TwoRaySpectrumPropagationLossModel.GetFtrFastFading(), ns3::ThreeGppChannelModel.GetNewChannel(), ns3::RandomBuildingPositionAllocator.GetNext(), ns3::OutdoorPositionAllocator.GetNext(), ns3::RandomRoomPositionAllocator.GetNext(), ns3::SameRoomPositionAllocator.GetNext(), ns3::FixedRoomPositionAllocator.GetNext(), ns3::GridPositionAllocator.GetNext(), ns3::RandomRectanglePositionAllocator.GetNext(), ns3::RandomBoxPositionAllocator.GetNext(), ns3::RandomDiscPositionAllocator.GetNext(), ns3::UniformDiscPositionAllocator.GetNext(), ns3::Building.GetRoomX(), ns3::GammaRandomVariable.GetValue(), ns3::LogNormalRandomVariable.GetValue(), ns3.isNaN(), MRG32k3a.MatVecModM(), SpectrumValueTestCase.MoreOrLessEqual(), nlohmann::detail::dtoa_impl::diyfp.mul(), ns3::SpectrumValue.Multiply(), NoneDbToDb(), nlohmann::detail::dtoa_impl::diyfp.normalize(), nlohmann::detail::dtoa_impl::diyfp.normalize_to(), ns3::PacketSink::AddressHash.operator()(), ns3::QKDApp004::AddressHash.operator()(), ns3::QKDApp014::AddressHash.operator()(), ns3::QKDKeyManagerSystemApplication::AddressHash.operator()(), ns3::QKDSDNController::AddressHash.operator()(), ns3::Ipv4AddressHash.operator()(), ns3::Ipv6AddressHash.operator()(), ns3.operator<<(), operator==(), ns3.ParseNs2Line(), QFunction(), ns3::ofi::LearningController.ReceiveFromSwitch(), ns3::Hash::Function::Murmur3Implementation.rotl32(), ns3::Hash::Function::Murmur3Implementation.rotl64(), NetAnimExperiment.Run(), Experiment.Run(), ns3::RadioEnvironmentMapHelper.RunOneIteration(), nlohmann::detail::lexer< BasicJsonType, InputAdapterType >.scan_number(), ns3::AnimationInterface.SetBackgroundImage(), ns3::AnimationInterface.SetConstantPosition(), ns3::LteHexGridEnbTopologyHelper.SetPositionAndInstallEnbDevice(), ns3::RandomDiscPositionAllocator.SetX(), ns3::UniformDiscPositionAllocator.SetX(), ns3::OutdoorPositionAllocator.SetX(), ns3::RandomRectanglePositionAllocator.SetX(), ns3::RandomBoxPositionAllocator.SetX(), LteFrAreaTestCase.SimpleTeleportUe(), nlohmann::detail::dtoa_impl::diyfp.sub(), ns3::SpectrumValue.Subtract(), LteFrAreaTestCase.TeleportUe(), LteUplinkPowerControlTestCase.TeleportUe(), LteFrAreaTestCase.TeleportUe2(), ns3::dot11s::PeerManagementProtocol.TimeToTu(), nlohmann::detail::binary_writer< BasicJsonType, CharType >.to_char_type(), ns3::dot11s::PeerManagementProtocol.TuToTime(), ns3::Average< T >.Update(), ns3::AnimationInterface.UpdatePosition(), ns3::GnuplotAggregator.Write2d(), ns3::GnuplotAggregator.Write2dWithXErrorDelta(), ns3::GnuplotAggregator.Write2dWithXYErrorDelta(), ns3::GnuplotAggregator.Write2dWithYErrorDelta(), ns3::AnimationInterface.WriteXmlUpdateBackground(), and ns3::AnimationInterface.WriteXmlUpdateNodePosition().