Public
Edited
Dec 29, 2023
Fork of RF LPF
Insert cell
Insert cell
Insert cell
Insert cell
{
const Fc = Number(fc);
const Z0 = Number(z0);
const c11 = Z0 / (Math.PI * Fc);
const c21 = 1 / (Z0 * Math.PI * Fc);

return html`
<div> Inductance [H] </div><div style="background-color: hsl(0,100%,90%)"> ${c11} </div>
<div> Capacitance [F] </div><div style="background-color: hsl(240,100%,90%)"> ${c21} </div>
`;
}
Insert cell
Insert cell
viewof c = {
const res = html`<input style="background-color: hsl(240,100%,90%)"></input>`;
res.value = 4.7e-12;
return res;
}
Insert cell
{
const Fc = Number(fc);
const C = Number(c);
const L = 1 / (2 * Math.pow(Math.PI * Fc, 2) * C)

return html`
<div> Inductance [H] </div><div style="background-color: hsl(0,100%,90%)"> ${L} </div>
`;
}
Insert cell

Purpose-built for displays of data

Observable is your go-to platform for exploring data and creating expressive data visualizations. Use reactive JavaScript notebooks for prototyping and a collaborative canvas for visual data exploration and dashboard creation.
Learn more