Published
Edited
Nov 24, 2021
Importers
Insert cell
Insert cell
Insert cell
{
let r = 1.25/950e-6
let tol = 1
let std = std_r(tol).above(r)
return html`The smallest standard ${pct(tol)} resistor ≥ ${Ω(r)} is ${Ω(std)}`
}
Insert cell
{
let r = 1.25/950e-6
let tol = 10
let std = std_r(tol).below(r)
return html`The largest standard ${pct(tol)} resistor ≤ ${Ω(r)} is ${Ω(std)}`
}
Insert cell
Insert cell
{
let r = 3
let tol = 10
let std = std_r(tol).below(r)
return html`The largest standard ${pct(tol)} resistor ≤ ${Ω(r)} ranges from ${Ω(std.min.toFixed(3))} to ${Ω(std.max.toFixed(3))}`
}
Insert cell
Insert cell
{
let r = 3.1
let tol = 10
return html`The smallest standard ${pct(tol)} resistor ≥ ${Ω(r)} is ${Ω(std_r(tol).above(r))}`
}
Insert cell
Insert cell
{
let r = 3.1
let tol = 10
let std = std_r(tol).aboveish(r)
return html`The smallest standard ${pct(tol)} resistor approximately above ${Ω(r)} is ${Ω(std)}, and its range is ${Ω(std.min.toFixed(3))} – ${Ω(std.max.toFixed(3))}`
}
Insert cell
{
let r = 3.1
let tol = 10
let std = std_r(tol).belowish(r)
return html`The smallest standard ${pct(tol)} resistor approximately below ${Ω(r)} is ${Ω(std)}, and its range is ${Ω(std.min.toFixed(3))} – ${Ω(std.max.toFixed(3))}`
}
Insert cell
Insert cell
{
let r = 2.55
let tol = 5
let aboveish = std_r(tol).aboveish(r)
let belowish = std_r(tol).belowish(r)

return html`The smallest standard ${pct(tol)} resistor approximately above ${Ω(r)} is ${Ω(aboveish)} (${Ω(aboveish.min.toFixed(3))} – ${Ω(aboveish.max.toFixed(3))}), but the largest standard ${pct(tol)} resistor approximately below ${Ω(r)} is ${Ω(belowish)} (${Ω(belowish.min.toFixed(3))} – ${Ω(belowish.max.toFixed(3))}).`
}
Insert cell
Insert cell
{
let r = 2.9
let tol = 10
let std_above = std_r(tol).above(r)
return html`The smallest standard ${pct(tol)} resistor ≥ ${Ω(r)} is ${Ω(std_above)} and looks like ${std_above.bands}`
}
Insert cell
{
let r = 194000
let tol = 1
let std_above = std_r(tol).above(r)
return html`The smallest standard ${pct(tol)} resistor ≥ ${Ω(r)} is ${Ω(std_above)} and looks like ${std_above.bands}`
}
Insert cell
Insert cell
std_r(10).above(3.3).colors
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
standard_decade(10)
Insert cell
find_std(3, standard_decade(10))
Insert cell
find_above(3, 10)
Insert cell
find_below(3, 10)
Insert cell
find_above(7, 10)
Insert cell
find_above(8.5, 10)
Insert cell
find_below(1.1, 10)
Insert cell
find_above(3.2, 10)
Insert cell
find_below(2.8, 10)
Insert cell
std_r(5).aboveish(1.0)
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell
Insert cell

One platform to build and deploy the best data apps

Experiment and prototype by building visualizations in live JavaScript notebooks. Collaborate with your team and decide which concepts to build out.
Use Observable Framework to build data apps locally. Use data loaders to build in any language or library, including Python, SQL, and R.
Seamlessly deploy to Observable. Test before you ship, use automatic deploy-on-commit, and ensure your projects are always up-to-date.
Learn more