Source code for RsSmw.Implementations.Source.Bb.Dvb.FilterPy.Parameter

from .......Internal.Core import Core
from .......Internal.CommandsGroup import CommandsGroup
from .......Internal import Conversions


# noinspection PyPep8Naming,PyAttributeOutsideInit,SpellCheckingInspection
[docs]class ParameterCls: """Parameter commands group definition. 9 total commands, 1 Subgroups, 7 group commands""" def __init__(self, core: Core, parent): self._core = core self._cmd_group = CommandsGroup("parameter", core, parent) @property def cosine(self): """cosine commands group. 0 Sub-classes, 2 commands.""" if not hasattr(self, '_cosine'): from .Cosine import CosineCls self._cosine = CosineCls(self._core, self._cmd_group) return self._cosine
[docs] def get_apco_25(self) -> float: """SCPI: [SOURce<HW>]:BB:DVB:FILTer:PARameter:APCO25 \n Snippet: value: float = driver.source.bb.dvb.filterPy.parameter.get_apco_25() \n Sets the filter parameter. Table Header: Filter Type / Parameter / Parameter name / Min / Max / Increment / Default \n - APCO25 / Rolloff factor / <Apco25> / 0.05 / 0.99 / 0.01 / 0.2 - COSine / Cutoff frequency shift / <Cosf> / 1 / 1 / 0.01 / 0.1 - COSine / Rolloff factor / <Cosine> / 0 / 1 / 0.01 / 0.1 - GAUSs / BxT / <Gauss> / 0.15 / 2.5 / 0.01 / 0.5 - LPASs / Cutoff frequency factor / <LPass> / 0.05 / 2 / 0.01 / 0.5 - LPASSEVM / Cutoff frequency factor / <LPassEvm> / 0.05 / 2 / 0.01 / 0.5 - PGAuss / BxT / <PGauss> / 0.15 / 2.5 / 0.01 / 0.5 - RCOSine / Rolloff factor / <RCosine> / 0 / 1 / 0.01 / 0.22 - SPHase / BxT / <SPhase> / 0.15 / 2.5 / 0.01 / 2 \n :return: apco_25: No help available """ response = self._core.io.query_str('SOURce<HwInstance>:BB:DVB:FILTer:PARameter:APCO25?') return Conversions.str_to_float(response)
[docs] def set_apco_25(self, apco_25: float) -> None: """SCPI: [SOURce<HW>]:BB:DVB:FILTer:PARameter:APCO25 \n Snippet: driver.source.bb.dvb.filterPy.parameter.set_apco_25(apco_25 = 1.0) \n Sets the filter parameter. Table Header: Filter Type / Parameter / Parameter name / Min / Max / Increment / Default \n - APCO25 / Rolloff factor / <Apco25> / 0.05 / 0.99 / 0.01 / 0.2 - COSine / Cutoff frequency shift / <Cosf> / 1 / 1 / 0.01 / 0.1 - COSine / Rolloff factor / <Cosine> / 0 / 1 / 0.01 / 0.1 - GAUSs / BxT / <Gauss> / 0.15 / 2.5 / 0.01 / 0.5 - LPASs / Cutoff frequency factor / <LPass> / 0.05 / 2 / 0.01 / 0.5 - LPASSEVM / Cutoff frequency factor / <LPassEvm> / 0.05 / 2 / 0.01 / 0.5 - PGAuss / BxT / <PGauss> / 0.15 / 2.5 / 0.01 / 0.5 - RCOSine / Rolloff factor / <RCosine> / 0 / 1 / 0.01 / 0.22 - SPHase / BxT / <SPhase> / 0.15 / 2.5 / 0.01 / 2 \n :param apco_25: float Range: 0.15 to 2.5 """ param = Conversions.decimal_value_to_str(apco_25) self._core.io.write(f'SOURce<HwInstance>:BB:DVB:FILTer:PARameter:APCO25 {param}')
[docs] def get_gauss(self) -> float: """SCPI: [SOURce<HW>]:BB:DVB:FILTer:PARameter:GAUSs \n Snippet: value: float = driver.source.bb.dvb.filterPy.parameter.get_gauss() \n Sets the filter parameter. Table Header: Filter Type / Parameter / Parameter name / Min / Max / Increment / Default \n - APCO25 / Rolloff factor / <Apco25> / 0.05 / 0.99 / 0.01 / 0.2 - COSine / Cutoff frequency shift / <Cosf> / 1 / 1 / 0.01 / 0.1 - COSine / Rolloff factor / <Cosine> / 0 / 1 / 0.01 / 0.1 - GAUSs / BxT / <Gauss> / 0.15 / 2.5 / 0.01 / 0.5 - LPASs / Cutoff frequency factor / <LPass> / 0.05 / 2 / 0.01 / 0.5 - LPASSEVM / Cutoff frequency factor / <LPassEvm> / 0.05 / 2 / 0.01 / 0.5 - PGAuss / BxT / <PGauss> / 0.15 / 2.5 / 0.01 / 0.5 - RCOSine / Rolloff factor / <RCosine> / 0 / 1 / 0.01 / 0.22 - SPHase / BxT / <SPhase> / 0.15 / 2.5 / 0.01 / 2 \n :return: gauss: No help available """ response = self._core.io.query_str('SOURce<HwInstance>:BB:DVB:FILTer:PARameter:GAUSs?') return Conversions.str_to_float(response)
[docs] def set_gauss(self, gauss: float) -> None: """SCPI: [SOURce<HW>]:BB:DVB:FILTer:PARameter:GAUSs \n Snippet: driver.source.bb.dvb.filterPy.parameter.set_gauss(gauss = 1.0) \n Sets the filter parameter. Table Header: Filter Type / Parameter / Parameter name / Min / Max / Increment / Default \n - APCO25 / Rolloff factor / <Apco25> / 0.05 / 0.99 / 0.01 / 0.2 - COSine / Cutoff frequency shift / <Cosf> / 1 / 1 / 0.01 / 0.1 - COSine / Rolloff factor / <Cosine> / 0 / 1 / 0.01 / 0.1 - GAUSs / BxT / <Gauss> / 0.15 / 2.5 / 0.01 / 0.5 - LPASs / Cutoff frequency factor / <LPass> / 0.05 / 2 / 0.01 / 0.5 - LPASSEVM / Cutoff frequency factor / <LPassEvm> / 0.05 / 2 / 0.01 / 0.5 - PGAuss / BxT / <PGauss> / 0.15 / 2.5 / 0.01 / 0.5 - RCOSine / Rolloff factor / <RCosine> / 0 / 1 / 0.01 / 0.22 - SPHase / BxT / <SPhase> / 0.15 / 2.5 / 0.01 / 2 \n :param gauss: float Range: 0.15 to 2.5 """ param = Conversions.decimal_value_to_str(gauss) self._core.io.write(f'SOURce<HwInstance>:BB:DVB:FILTer:PARameter:GAUSs {param}')
[docs] def get_lpass_evm(self) -> float: """SCPI: [SOURce<HW>]:BB:DVB:FILTer:PARameter:LPASSEVM \n Snippet: value: float = driver.source.bb.dvb.filterPy.parameter.get_lpass_evm() \n Sets the filter parameter. Table Header: Filter Type / Parameter / Parameter name / Min / Max / Increment / Default \n - APCO25 / Rolloff factor / <Apco25> / 0.05 / 0.99 / 0.01 / 0.2 - COSine / Cutoff frequency shift / <Cosf> / 1 / 1 / 0.01 / 0.1 - COSine / Rolloff factor / <Cosine> / 0 / 1 / 0.01 / 0.1 - GAUSs / BxT / <Gauss> / 0.15 / 2.5 / 0.01 / 0.5 - LPASs / Cutoff frequency factor / <LPass> / 0.05 / 2 / 0.01 / 0.5 - LPASSEVM / Cutoff frequency factor / <LPassEvm> / 0.05 / 2 / 0.01 / 0.5 - PGAuss / BxT / <PGauss> / 0.15 / 2.5 / 0.01 / 0.5 - RCOSine / Rolloff factor / <RCosine> / 0 / 1 / 0.01 / 0.22 - SPHase / BxT / <SPhase> / 0.15 / 2.5 / 0.01 / 2 \n :return: lpass_evm: No help available """ response = self._core.io.query_str('SOURce<HwInstance>:BB:DVB:FILTer:PARameter:LPASSEVM?') return Conversions.str_to_float(response)
[docs] def set_lpass_evm(self, lpass_evm: float) -> None: """SCPI: [SOURce<HW>]:BB:DVB:FILTer:PARameter:LPASSEVM \n Snippet: driver.source.bb.dvb.filterPy.parameter.set_lpass_evm(lpass_evm = 1.0) \n Sets the filter parameter. Table Header: Filter Type / Parameter / Parameter name / Min / Max / Increment / Default \n - APCO25 / Rolloff factor / <Apco25> / 0.05 / 0.99 / 0.01 / 0.2 - COSine / Cutoff frequency shift / <Cosf> / 1 / 1 / 0.01 / 0.1 - COSine / Rolloff factor / <Cosine> / 0 / 1 / 0.01 / 0.1 - GAUSs / BxT / <Gauss> / 0.15 / 2.5 / 0.01 / 0.5 - LPASs / Cutoff frequency factor / <LPass> / 0.05 / 2 / 0.01 / 0.5 - LPASSEVM / Cutoff frequency factor / <LPassEvm> / 0.05 / 2 / 0.01 / 0.5 - PGAuss / BxT / <PGauss> / 0.15 / 2.5 / 0.01 / 0.5 - RCOSine / Rolloff factor / <RCosine> / 0 / 1 / 0.01 / 0.22 - SPHase / BxT / <SPhase> / 0.15 / 2.5 / 0.01 / 2 \n :param lpass_evm: float Range: 0.15 to 2.5 """ param = Conversions.decimal_value_to_str(lpass_evm) self._core.io.write(f'SOURce<HwInstance>:BB:DVB:FILTer:PARameter:LPASSEVM {param}')
[docs] def get_lpass(self) -> float: """SCPI: [SOURce<HW>]:BB:DVB:FILTer:PARameter:LPASs \n Snippet: value: float = driver.source.bb.dvb.filterPy.parameter.get_lpass() \n Sets the filter parameter. Table Header: Filter Type / Parameter / Parameter name / Min / Max / Increment / Default \n - APCO25 / Rolloff factor / <Apco25> / 0.05 / 0.99 / 0.01 / 0.2 - COSine / Cutoff frequency shift / <Cosf> / 1 / 1 / 0.01 / 0.1 - COSine / Rolloff factor / <Cosine> / 0 / 1 / 0.01 / 0.1 - GAUSs / BxT / <Gauss> / 0.15 / 2.5 / 0.01 / 0.5 - LPASs / Cutoff frequency factor / <LPass> / 0.05 / 2 / 0.01 / 0.5 - LPASSEVM / Cutoff frequency factor / <LPassEvm> / 0.05 / 2 / 0.01 / 0.5 - PGAuss / BxT / <PGauss> / 0.15 / 2.5 / 0.01 / 0.5 - RCOSine / Rolloff factor / <RCosine> / 0 / 1 / 0.01 / 0.22 - SPHase / BxT / <SPhase> / 0.15 / 2.5 / 0.01 / 2 \n :return: lpass: No help available """ response = self._core.io.query_str('SOURce<HwInstance>:BB:DVB:FILTer:PARameter:LPASs?') return Conversions.str_to_float(response)
[docs] def set_lpass(self, lpass: float) -> None: """SCPI: [SOURce<HW>]:BB:DVB:FILTer:PARameter:LPASs \n Snippet: driver.source.bb.dvb.filterPy.parameter.set_lpass(lpass = 1.0) \n Sets the filter parameter. Table Header: Filter Type / Parameter / Parameter name / Min / Max / Increment / Default \n - APCO25 / Rolloff factor / <Apco25> / 0.05 / 0.99 / 0.01 / 0.2 - COSine / Cutoff frequency shift / <Cosf> / 1 / 1 / 0.01 / 0.1 - COSine / Rolloff factor / <Cosine> / 0 / 1 / 0.01 / 0.1 - GAUSs / BxT / <Gauss> / 0.15 / 2.5 / 0.01 / 0.5 - LPASs / Cutoff frequency factor / <LPass> / 0.05 / 2 / 0.01 / 0.5 - LPASSEVM / Cutoff frequency factor / <LPassEvm> / 0.05 / 2 / 0.01 / 0.5 - PGAuss / BxT / <PGauss> / 0.15 / 2.5 / 0.01 / 0.5 - RCOSine / Rolloff factor / <RCosine> / 0 / 1 / 0.01 / 0.22 - SPHase / BxT / <SPhase> / 0.15 / 2.5 / 0.01 / 2 \n :param lpass: float Range: 0.15 to 2.5 """ param = Conversions.decimal_value_to_str(lpass) self._core.io.write(f'SOURce<HwInstance>:BB:DVB:FILTer:PARameter:LPASs {param}')
[docs] def get_pgauss(self) -> float: """SCPI: [SOURce<HW>]:BB:DVB:FILTer:PARameter:PGAuss \n Snippet: value: float = driver.source.bb.dvb.filterPy.parameter.get_pgauss() \n Sets the filter parameter. Table Header: Filter Type / Parameter / Parameter name / Min / Max / Increment / Default \n - APCO25 / Rolloff factor / <Apco25> / 0.05 / 0.99 / 0.01 / 0.2 - COSine / Cutoff frequency shift / <Cosf> / 1 / 1 / 0.01 / 0.1 - COSine / Rolloff factor / <Cosine> / 0 / 1 / 0.01 / 0.1 - GAUSs / BxT / <Gauss> / 0.15 / 2.5 / 0.01 / 0.5 - LPASs / Cutoff frequency factor / <LPass> / 0.05 / 2 / 0.01 / 0.5 - LPASSEVM / Cutoff frequency factor / <LPassEvm> / 0.05 / 2 / 0.01 / 0.5 - PGAuss / BxT / <PGauss> / 0.15 / 2.5 / 0.01 / 0.5 - RCOSine / Rolloff factor / <RCosine> / 0 / 1 / 0.01 / 0.22 - SPHase / BxT / <SPhase> / 0.15 / 2.5 / 0.01 / 2 \n :return: pgauss: No help available """ response = self._core.io.query_str('SOURce<HwInstance>:BB:DVB:FILTer:PARameter:PGAuss?') return Conversions.str_to_float(response)
[docs] def set_pgauss(self, pgauss: float) -> None: """SCPI: [SOURce<HW>]:BB:DVB:FILTer:PARameter:PGAuss \n Snippet: driver.source.bb.dvb.filterPy.parameter.set_pgauss(pgauss = 1.0) \n Sets the filter parameter. Table Header: Filter Type / Parameter / Parameter name / Min / Max / Increment / Default \n - APCO25 / Rolloff factor / <Apco25> / 0.05 / 0.99 / 0.01 / 0.2 - COSine / Cutoff frequency shift / <Cosf> / 1 / 1 / 0.01 / 0.1 - COSine / Rolloff factor / <Cosine> / 0 / 1 / 0.01 / 0.1 - GAUSs / BxT / <Gauss> / 0.15 / 2.5 / 0.01 / 0.5 - LPASs / Cutoff frequency factor / <LPass> / 0.05 / 2 / 0.01 / 0.5 - LPASSEVM / Cutoff frequency factor / <LPassEvm> / 0.05 / 2 / 0.01 / 0.5 - PGAuss / BxT / <PGauss> / 0.15 / 2.5 / 0.01 / 0.5 - RCOSine / Rolloff factor / <RCosine> / 0 / 1 / 0.01 / 0.22 - SPHase / BxT / <SPhase> / 0.15 / 2.5 / 0.01 / 2 \n :param pgauss: float Range: 0.15 to 2.5 """ param = Conversions.decimal_value_to_str(pgauss) self._core.io.write(f'SOURce<HwInstance>:BB:DVB:FILTer:PARameter:PGAuss {param}')
[docs] def get_rcosine(self) -> float: """SCPI: [SOURce<HW>]:BB:DVB:FILTer:PARameter:RCOSine \n Snippet: value: float = driver.source.bb.dvb.filterPy.parameter.get_rcosine() \n Sets the filter parameter. Table Header: Filter Type / Parameter / Parameter name / Min / Max / Increment / Default \n - APCO25 / Rolloff factor / <Apco25> / 0.05 / 0.99 / 0.01 / 0.2 - COSine / Cutoff frequency shift / <Cosf> / 1 / 1 / 0.01 / 0.1 - COSine / Rolloff factor / <Cosine> / 0 / 1 / 0.01 / 0.1 - GAUSs / BxT / <Gauss> / 0.15 / 2.5 / 0.01 / 0.5 - LPASs / Cutoff frequency factor / <LPass> / 0.05 / 2 / 0.01 / 0.5 - LPASSEVM / Cutoff frequency factor / <LPassEvm> / 0.05 / 2 / 0.01 / 0.5 - PGAuss / BxT / <PGauss> / 0.15 / 2.5 / 0.01 / 0.5 - RCOSine / Rolloff factor / <RCosine> / 0 / 1 / 0.01 / 0.22 - SPHase / BxT / <SPhase> / 0.15 / 2.5 / 0.01 / 2 \n :return: rcosine: No help available """ response = self._core.io.query_str('SOURce<HwInstance>:BB:DVB:FILTer:PARameter:RCOSine?') return Conversions.str_to_float(response)
[docs] def set_rcosine(self, rcosine: float) -> None: """SCPI: [SOURce<HW>]:BB:DVB:FILTer:PARameter:RCOSine \n Snippet: driver.source.bb.dvb.filterPy.parameter.set_rcosine(rcosine = 1.0) \n Sets the filter parameter. Table Header: Filter Type / Parameter / Parameter name / Min / Max / Increment / Default \n - APCO25 / Rolloff factor / <Apco25> / 0.05 / 0.99 / 0.01 / 0.2 - COSine / Cutoff frequency shift / <Cosf> / 1 / 1 / 0.01 / 0.1 - COSine / Rolloff factor / <Cosine> / 0 / 1 / 0.01 / 0.1 - GAUSs / BxT / <Gauss> / 0.15 / 2.5 / 0.01 / 0.5 - LPASs / Cutoff frequency factor / <LPass> / 0.05 / 2 / 0.01 / 0.5 - LPASSEVM / Cutoff frequency factor / <LPassEvm> / 0.05 / 2 / 0.01 / 0.5 - PGAuss / BxT / <PGauss> / 0.15 / 2.5 / 0.01 / 0.5 - RCOSine / Rolloff factor / <RCosine> / 0 / 1 / 0.01 / 0.22 - SPHase / BxT / <SPhase> / 0.15 / 2.5 / 0.01 / 2 \n :param rcosine: float Range: 0.15 to 2.5 """ param = Conversions.decimal_value_to_str(rcosine) self._core.io.write(f'SOURce<HwInstance>:BB:DVB:FILTer:PARameter:RCOSine {param}')
[docs] def get_sphase(self) -> float: """SCPI: [SOURce<HW>]:BB:DVB:FILTer:PARameter:SPHase \n Snippet: value: float = driver.source.bb.dvb.filterPy.parameter.get_sphase() \n Sets the filter parameter. Table Header: Filter Type / Parameter / Parameter name / Min / Max / Increment / Default \n - APCO25 / Rolloff factor / <Apco25> / 0.05 / 0.99 / 0.01 / 0.2 - COSine / Cutoff frequency shift / <Cosf> / 1 / 1 / 0.01 / 0.1 - COSine / Rolloff factor / <Cosine> / 0 / 1 / 0.01 / 0.1 - GAUSs / BxT / <Gauss> / 0.15 / 2.5 / 0.01 / 0.5 - LPASs / Cutoff frequency factor / <LPass> / 0.05 / 2 / 0.01 / 0.5 - LPASSEVM / Cutoff frequency factor / <LPassEvm> / 0.05 / 2 / 0.01 / 0.5 - PGAuss / BxT / <PGauss> / 0.15 / 2.5 / 0.01 / 0.5 - RCOSine / Rolloff factor / <RCosine> / 0 / 1 / 0.01 / 0.22 - SPHase / BxT / <SPhase> / 0.15 / 2.5 / 0.01 / 2 \n :return: sphase: float Range: 0.15 to 2.5 """ response = self._core.io.query_str('SOURce<HwInstance>:BB:DVB:FILTer:PARameter:SPHase?') return Conversions.str_to_float(response)
[docs] def set_sphase(self, sphase: float) -> None: """SCPI: [SOURce<HW>]:BB:DVB:FILTer:PARameter:SPHase \n Snippet: driver.source.bb.dvb.filterPy.parameter.set_sphase(sphase = 1.0) \n Sets the filter parameter. Table Header: Filter Type / Parameter / Parameter name / Min / Max / Increment / Default \n - APCO25 / Rolloff factor / <Apco25> / 0.05 / 0.99 / 0.01 / 0.2 - COSine / Cutoff frequency shift / <Cosf> / 1 / 1 / 0.01 / 0.1 - COSine / Rolloff factor / <Cosine> / 0 / 1 / 0.01 / 0.1 - GAUSs / BxT / <Gauss> / 0.15 / 2.5 / 0.01 / 0.5 - LPASs / Cutoff frequency factor / <LPass> / 0.05 / 2 / 0.01 / 0.5 - LPASSEVM / Cutoff frequency factor / <LPassEvm> / 0.05 / 2 / 0.01 / 0.5 - PGAuss / BxT / <PGauss> / 0.15 / 2.5 / 0.01 / 0.5 - RCOSine / Rolloff factor / <RCosine> / 0 / 1 / 0.01 / 0.22 - SPHase / BxT / <SPhase> / 0.15 / 2.5 / 0.01 / 2 \n :param sphase: float Range: 0.15 to 2.5 """ param = Conversions.decimal_value_to_str(sphase) self._core.io.write(f'SOURce<HwInstance>:BB:DVB:FILTer:PARameter:SPHase {param}')
def clone(self) -> 'ParameterCls': """Clones the group by creating new object from it and its whole existing subgroups Also copies all the existing default Repeated Capabilities setting, which you can change independently without affecting the original group""" new_group = ParameterCls(self._core, self._cmd_group.parent) self._cmd_group.synchronize_repcaps(new_group) return new_group