@@ -79,7 +79,7 @@ def _load_revision(self):
79
79
Load this revision.
80
80
81
81
Examples
82
- ----------
82
+ --------
83
83
>>> aedtapp.results.revision.load_revision()
84
84
"""
85
85
if self .revision_loaded :
@@ -105,7 +105,7 @@ def result_mode_error():
105
105
@pyaedt_function_handler ()
106
106
def get_interaction (self , domain ):
107
107
"""
108
- Creates a new interaction for a domain.
108
+ Create a new interaction for a domain.
109
109
110
110
Parameters
111
111
----------
@@ -118,7 +118,7 @@ def get_interaction(self, domain):
118
118
Interaction object.
119
119
120
120
Examples
121
- ----------
121
+ --------
122
122
>>> domain = aedtapp.results.interaction_domain()
123
123
>>> rev.get_interaction(domain)
124
124
@@ -146,7 +146,7 @@ def run(self, domain):
146
146
Interaction object.
147
147
148
148
Examples
149
- ----------
149
+ --------
150
150
>>> domain = aedtapp.results.interaction_domain()
151
151
>>> rev.run(domain)
152
152
@@ -180,7 +180,7 @@ def is_domain_valid(self, domain):
180
180
``InteractionDomain`` object for constraining the analysis parameters.
181
181
182
182
Examples
183
- ----------
183
+ --------
184
184
>>> domain = aedtapp.interaction_domain()
185
185
>>> aedtapp.results.current_revision.is_domain_valid(domain)
186
186
True
@@ -200,12 +200,12 @@ def get_instance_count(self, domain):
200
200
``InteractionDomain`` object for constraining the analysis parameters.
201
201
202
202
Returns
203
- --------
203
+ -------
204
204
count : int
205
205
Number of instances in the domain for the current revision.
206
206
207
207
Examples
208
- ----------
208
+ --------
209
209
>>> domain = aedtapp.interaction_domain()
210
210
>>> num_instances = aedtapp.results.current_revision.get_instance_count(domain)
211
211
"""
@@ -228,7 +228,7 @@ def get_receiver_names(self):
228
228
List of receiver names.
229
229
230
230
Examples
231
- ----------
231
+ --------
232
232
>>> rxs = aedtapp.results.current_revision.get_reciver_names()
233
233
"""
234
234
if self .revision_loaded :
@@ -262,7 +262,7 @@ def get_interferer_names(self, interferer_type=None):
262
262
List of interfering systems' names.
263
263
264
264
Examples
265
- ----------
265
+ --------
266
266
>>> transmitters = aedtapp.results.current_revision.get_interferer_names(InterfererType.TRANSMITTERS)
267
267
>>> emitters = aedtapp.results.current_revision.get_interferer_names(InterfererType.EMITTERS)
268
268
>>> both = aedtapp.results.current_revision.get_interferer_names(InterfererType.TRANSMITTERS_AND_EMITTERS)
@@ -301,7 +301,7 @@ def get_band_names(self, radio_name, tx_rx_mode=None):
301
301
List of ``tx`` or ``rx`` band/waveform names.
302
302
303
303
Examples
304
- ----------
304
+ --------
305
305
>>> bands = aedtapp.results.current_revision.get_band_names('Bluetooth', TxRxMode.RX)
306
306
>>> waveforms = aedtapp.results.current_revision.get_band_names('USB_3.x', TxRxMode.TX)
307
307
"""
@@ -340,7 +340,7 @@ def get_active_frequencies(self, radio_name, band_name, tx_rx_mode, units=""):
340
340
List of ``tx`` or ``rx`` radio/emitter frequencies.
341
341
342
342
Examples
343
- ----------
343
+ --------
344
344
>>> freqs = aedtapp.results.current_revision.get_active_frequencies(
345
345
'Bluetooth', 'Rx - Base Data Rate', TxRxMode.RX)
346
346
"""
@@ -361,7 +361,7 @@ def notes(self):
361
361
Add notes to the revision.
362
362
363
363
Examples
364
- ----------
364
+ --------
365
365
>>> aedtapp.results.current_revision.notes = "Added a filter to the WiFi Radio."
366
366
>>> aedtapp.results.current_revision.notes
367
367
'Added a filter to the WiFi Radio.'
@@ -383,7 +383,7 @@ def n_to_1_limit(self):
383
383
- A value of ``-1`` allows unlimited N to 1. (N is set to the maximum.)
384
384
385
385
Examples
386
- ----------
386
+ --------
387
387
>>> aedtapp.results.current_revision.n_to_1_limit = 2**20
388
388
>>> aedtapp.results.current_revision.n_to_1_limit
389
389
1048576
0 commit comments