diff options
4 files changed, 15 insertions, 15 deletions
diff --git a/charts/capacitor-dielectric-absorption-noise-typical-magnitude.typ b/charts/capacitor-dielectric-absorption-noise-typical-magnitude.typ index d15bfb4..ae27cb0 100644 --- a/charts/capacitor-dielectric-absorption-noise-typical-magnitude.typ +++ b/charts/capacitor-dielectric-absorption-noise-typical-magnitude.typ @@ -31,7 +31,7 @@ style: (stroke: (dash: "solid")), label: [Ceramic (X7R / Class 2)], domain: (0.001, 10), - samples: 10000, + samples: 1000, t => ( 250 * ( @@ -44,7 +44,7 @@ style: (stroke: (dash: "dotted")), label: [Polypropylene (PP)], domain: (0.001, 10), - samples: 10000, + samples: 1000, t => ( 5 * ( @@ -57,7 +57,7 @@ style: (stroke: (dash: "dashed")), label: [Polystyrene (PS)], domain: (0.001, 10), - samples: 10000, + samples: 1000, t => ( 2 * ( @@ -70,7 +70,7 @@ style: (stroke: (dash: "dash-dotted")), label: [Teflon (PTFE)], domain: (0.001, 10), - samples: 10000, + samples: 1000, t => ( 1 * ( @@ -83,7 +83,7 @@ style: (stroke: (dash: (6pt, 2pt, 2pt, 2pt))), label: [Class 1 (C0G/NP0)], domain: (0.001, 10), - samples: 10000, + samples: 1000, t => ( 0.5 * ( diff --git a/charts/crosstalk-mathematical-model.typ b/charts/crosstalk-mathematical-model.typ index 7701ed9..0319493 100644 --- a/charts/crosstalk-mathematical-model.typ +++ b/charts/crosstalk-mathematical-model.typ @@ -33,7 +33,7 @@ label: [Unshielded trace \ ($qty(1, "pF"), qty(10, "kilo ohm")$)], domain: (10, 100000), - samples: 8000, + samples: 1000, f => 2 * calc.pi * f * 1e-12 * 10000 * 10 * 1000, // in mV ) @@ -43,7 +43,7 @@ label: [Low-impedance node \ ($qty(1, "pF"), qty(1, "kilo ohm")$)], domain: (10, 100000), - samples: 8000, + samples: 1000, f => 2 * calc.pi * f * 1e-12 * 1000 * 10 * 1000, // in mV ) @@ -53,7 +53,7 @@ label: [Guard trace shielded \ ($qty(0.05, "pF"), qty(10, "kilo ohm")$)], domain: (10, 100000), - samples: 8000, + samples: 1000, f => 2 * calc.pi * f * 0.05e-12 * 10000 * 10 * 1000, // in mV ) }, diff --git a/charts/opamp-voltage-noise-typical-magnitudes.typ b/charts/opamp-voltage-noise-typical-magnitudes.typ index 2e926dd..37e926c 100644 --- a/charts/opamp-voltage-noise-typical-magnitudes.typ +++ b/charts/opamp-voltage-noise-typical-magnitudes.typ @@ -23,7 +23,7 @@ style: (stroke: (dash: "solid")), label: [TL07x], domain: (0.1, 100000), - samples: 8000, + samples: 1000, f => 18 * calc.sqrt(1 + 200 / f), ) // Low noise (OPA211): e_white = 1.1 nV/sqrt(Hz), fc = 10 Hz @@ -31,7 +31,7 @@ style: (stroke: (dash: "dashed")), label: [OPA211], domain: (0.1, 100000), - samples: 8000, + samples: 1000, f => 1.1 * calc.sqrt(1 + 10 / f), ) // Precision low noise (LT1028): e_white = 0.85 nV/sqrt(Hz), fc = 3.5 Hz @@ -39,7 +39,7 @@ style: (stroke: (dash: "dotted")), label: [LT1028], domain: (0.1, 100000), - samples: 8000, + samples: 1000, f => 0.85 * calc.sqrt(1 + 3.5 / f), ) // Chopper stabilized (LTC2057): e_white = 7 nV/sqrt(Hz), fc = 1 Hz @@ -47,7 +47,7 @@ style: (stroke: (dash: "dash-dotted")), label: [LTC2057], domain: (0.1, 100000), - samples: 8000, + samples: 1000, f => 7 * calc.sqrt(1 + 1 / f), ) }, diff --git a/charts/power-supply-noise-coupling-typical-magnitude.typ b/charts/power-supply-noise-coupling-typical-magnitude.typ index 6a3a8d8..eb29c19 100644 --- a/charts/power-supply-noise-coupling-typical-magnitude.typ +++ b/charts/power-supply-noise-coupling-typical-magnitude.typ @@ -30,7 +30,7 @@ style: (stroke: (dash: "solid")), label: [TL07x], domain: (1, 1000000), - samples: 8000, + samples: 1000, f => ( 100 - 10 * calc.log(1 + calc.pow(f / 1000, 2), base: 10) @@ -42,7 +42,7 @@ style: (stroke: (dash: "dotted")), label: [OPA211], domain: (1, 1000000), - samples: 8000, + samples: 1000, f => ( 130 - 10 * calc.log(1 + calc.pow(f / 300, 2), base: 10) @@ -54,7 +54,7 @@ style: (stroke: (dash: "dashed")), label: [LT1028], domain: (1, 1000000), - samples: 8000, + samples: 1000, f => ( 120 - 10 * calc.log(1 + calc.pow(f / 300, 2), base: 10) |
