Vikram Reddy Anapana

Results 5 comments of Vikram Reddy Anapana

1. I tried to modify the existing Power_splitter ---> attempted to increase the design region by a little ---> ValueError 2. I tried to scale it to mmWave frequencies --->...

```python mmwave_wavelengths_nm = [10710000.0, 5000000.0] mmwave_grid_spacing_nm = 10000 design_extent = u.unyt_array([400000, 400000], u.nm) if (design_extent[0] % mmwave_grid_spacing_nm != 0) or (design_extent[1] % mmwave_grid_spacing_nm != 0): raise ValueError("Design extent must be...

Please see the following full code ```python import unyt as u from invrs_gym import challenges from invrs_gym.challenges.ceviche import defaults import jax.random as jax_random import jax.numpy as jnp from totypes import...

Apologies, I didn’t notice your response earlier. I went through defaults.py, but it’s still unclear how to use it to scale the structure for mmWave frequencies. Could you please guide...