Palace Width Sweep: Parallel Simulation¶
Sweep the microstrip width from 5 to 50 um (5 points), run all simulations in parallel on GDSFactory+ cloud using the non-blocking API, then compare S11 and S21 across widths.
Requirements:
- IHP PDK:
uv pip install ihp-gdsfactory - GDSFactory+ account for cloud simulation
Define the sweep¶
Build components and configure simulations¶
import gdsfactory as gf
from ihp import LAYER, PDK, cells
from gsim.common.stack import get_stack
from gsim.palace import DrivenSim
PDK.activate()
stack = get_stack(air_above=300.0) # auto-detects active PDK
sims = []
for w in widths:
# Build component
c = gf.Component()
r1 = c << cells.straight_metal(length=1000, width=w)
r = c.get_region(layer=LAYER.TopMetal2drawing)
r_sized = r.sized(+20000)
c.add_polygon(r_sized, layer=LAYER.Metal1drawing)
c.add_ports(r1.ports)
# Configure simulation
sim = DrivenSim()
sim.set_output_dir(f"./palace-sim-w{w:.1f}")
sim.set_geometry(c)
sim.set_stack(stack)
for port in c.ports:
sim.add_port(
port.name, from_layer="metal1", to_layer="topmetal2", geometry="via"
)
sim.set_driven(fmin=1e9, fmax=100e9, num_points=80)
sim.mesh(preset="default")
sims.append(sim)
print(f"Configured {len(sims)} simulations")
/tmp/ipykernel_6293/3909240475.py:9: UserWarning: get_stack(air_above/air_below) is deprecated and ignored. Use simulation.set_airbox(margin_x=..., margin_y=..., z_above=..., z_below=...).
stack = get_stack(air_above=300.0) # auto-detects active PDK
Small conductor feature detected (2.000 um) may be under-resolved by refined_mesh_size=5.000 um. Pass auto_size=True to scale the mesh down.
Configured 5 simulations
Upload and start all jobs (non-blocking)¶
# Upload and start all jobs without waiting
job_ids = []
for sim in sims:
job_id = sim.run(wait=False)
job_ids.append(job_id)
print(f"Started {len(job_ids)} jobs: {job_ids}")
Info : Reading 'palace-sim-w2.0/palace.msh'...
Info : 5322 nodes
Info : 35421 elements
Info : Done reading 'palace-sim-w2.0/palace.msh'
Info : Reading 'palace-sim-w2.0/palace.msh'...
Info : 5322 nodes
Info : 35421 elements
Info : Done reading 'palace-sim-w2.0/palace.msh'
Job started: palace-0aed2bf2
Info : Reading 'palace-sim-w6.0/palace.msh'...
Info : 5722 nodes
Info : 38443 elements
Info : Done reading 'palace-sim-w6.0/palace.msh'
Info : Reading 'palace-sim-w6.0/palace.msh'...
Info : 5722 nodes
Info : 38443 elements
Info : Done reading 'palace-sim-w6.0/palace.msh'
Job started: palace-6110860b
Info : Reading 'palace-sim-w10.0/palace.msh'...
Info : 5796 nodes
Info : 39011 elements
Info : Done reading 'palace-sim-w10.0/palace.msh'
Info : Reading 'palace-sim-w10.0/palace.msh'...
Info : 5796 nodes
Info : 39011 elements
Info : Done reading 'palace-sim-w10.0/palace.msh'
Job started: palace-efb881f1
Info : Reading 'palace-sim-w14.0/palace.msh'...
Info : 5784 nodes
Info : 38804 elements
Info : Done reading 'palace-sim-w14.0/palace.msh'
Info : Reading 'palace-sim-w14.0/palace.msh'...
Info : 5784 nodes
Info : 38804 elements
Info : Done reading 'palace-sim-w14.0/palace.msh'
Job started: palace-99d546c1
Info : Reading 'palace-sim-w18.0/palace.msh'...
Info : 6115 nodes
Info : 41268 elements
Info : Done reading 'palace-sim-w18.0/palace.msh'
Info : Reading 'palace-sim-w18.0/palace.msh'...
Info : 6115 nodes
Info : 41268 elements
Info : Done reading 'palace-sim-w18.0/palace.msh'
Job started: palace-775bcf49
Started 5 jobs: ['019f728f-b763-7061-8beb-823e3694def2', '019f728f-bc30-79a0-a242-281c16273c50', '019f728f-c167-7641-99d3-32b29cc7770b', '019f728f-c662-7fd1-8ac8-6ff3f28b8dd3', '019f728f-cb41-7171-b162-d06f07c27b36']
Wait for all jobs to complete¶
import gsim
# Poll all jobs concurrently, download and parse results
results = gsim.wait_for_results(job_ids)
Waiting for 5 jobs...
palace-0aed2bf2 completed 1m 06s
palace-6110860b completed 1m 41s
palace-efb881f1 completed 1m 53s
palace-99d546c1 completed 1m 42s
palace-775bcf49 completed 1m 53s
Extracting results.tar.gz...
Downloaded 10 files to /home/runner/work/simulation-templates/simulation-templates/docs/notebooks/sim-data-palace-0aed2bf2
Extracting results.tar.gz...
Downloaded 10 files to /home/runner/work/simulation-templates/simulation-templates/docs/notebooks/sim-data-palace-6110860b
Extracting results.tar.gz...
Downloaded 10 files to /home/runner/work/simulation-templates/simulation-templates/docs/notebooks/sim-data-palace-efb881f1
Extracting results.tar.gz...
Downloaded 10 files to /home/runner/work/simulation-templates/simulation-templates/docs/notebooks/sim-data-palace-99d546c1
Extracting results.tar.gz...
Downloaded 10 files to /home/runner/work/simulation-templates/simulation-templates/docs/notebooks/sim-data-palace-775bcf49
Plot S11 and S21 comparison¶
import matplotlib.pyplot as plt
fig, (ax1, ax2) = plt.subplots(2, 1, figsize=(6, 6))
for w, sp in zip(widths, results, strict=True):
ax1.plot(sp.freq, sp.s11.db, label=f"w={w:.1f} um")
ax2.plot(sp.freq, sp.s21.db, label=f"w={w:.1f} um")
ax1.set(
xlabel="Frequency (GHz)", ylabel="|S11| (dB)", title="S11 — Return Loss vs Width"
)
ax1.legend()
ax1.grid(True)
ax2.set(
xlabel="Frequency (GHz)", ylabel="|S21| (dB)", title="S21 — Insertion Loss vs Width"
)
ax2.legend()
ax2.grid(True)
plt.tight_layout()
