#Measurement

20 posts loaded — scroll for more

Text
philwriter-blog
philwriter-blog

Joseph Whitworth - the world’s best mechanician

In his biography, Norman Atkinson makes the point that it is sometimes difficult to trace the early days of people who later became famous. With Joseph Whitworth, whom Atkinson describes as the ‘World’s Best Mechanician’, the problem was that contemporary writers were keen to give the great man as great a pedigree, so early biographers paint a relatively comfortable childhood accompanied by a…

Photo
imakememesdurrrr
imakememesdurrrr
Text
idontexist734
idontexist734

what do you call a femme alto?

[[MORE]]

Text
thirdman000
thirdman000
Text
st4r-c4tch3r
st4r-c4tch3r

making a new system of measurement

only allowed in utah (if it’s real)

Text
richardvarey
richardvarey

When Measurements Don’t Tell the Whole Story

Rhetoric, Epistemology, and the Rendering Frame

The claim that measurements cannot capture everything we need to know about audio equipment is among the most persistent and contentious in audiophile discourse. It appears in various formulations—”science doesn’t understand everything about listening to music”, “measurements miss what the ears hear”, “there are unmeasurable qualities”—and…

Text
astrangers--pngs
astrangers--pngs
Text
richardvarey
richardvarey

You can’t measure that!

How does the rendering framing explain why you care about things that don’t show up in measurements?

Because rendering quality is about whether the presentation coheres as a musically intelligible event, not whether the signal has been accurately transmitted. And coherence has properties that aren’t straightforwardly measurable.

Temporal coherence is the clearest example. A system can measure…

Text
happter-n-friends
happter-n-friends

I finally figured out why American temperatures are in degrees F and temperatures everywhere else are in C. F is for Freedom and C is for Common sense.

Text
arch300
arch300

تقنية Vitrek Accumeasure™ لقياس رقائق السيليكون بدقة عالية

تقنية Vitrek Accumeasure™ لقياس رقائق السيليكون بدقة عالية ⚙️ ملخص المقال تقدم شركة Vitrek الأمريكية تقنية Accumeasure™ Capacitive Wafer Measurement Tools حلاً مبتكرًا واقتصاديًا لقياس رقائق السيليكون بدقة عالية، يستهدف بشكل خاص المصانع الصغيرة والمتوسطة (mini-fabs) ومتخصصي صناعة أشباه الموصلات ذات الحجم الإنتاجي المنخفض. تم تطوير هذه التقنية لتكون بديلًا فعال التكلفة وأقل تعقيدًا لأنظمة القياس البصرية التقليدية، مما يسهل بدء التشغيل ويخفض التكاليف الرأسمالية للمشروعات الناشئة. 🔧 تطور نظم قياس رقائق السيليكون تعتبر قياسات الدقة العالية في تصنيع Wafer أساسية لضمان الجودة والتحكم في العمليات داخل مصانع أشباه الموصلات. في هذا السياق، زادت الحاجة لأجهزة قياس تتمتع بحساسية فائقة ودقة تصل إلى 0.1 نانومتر، مع قابلية التكامل […] 🔗 المزيد في الرابط أدناه

Photo
imakememesdurrrr
imakememesdurrrr
Text
greatprinceofabraham
greatprinceofabraham

@whatdamath

Anton discusses #time; is it fundamental or emergent? He concludes that the answer is presently beyond our #physics with the caveat that it may be the result of the #entanglement of the universe with the clock analog, and thus a product of the act of #measurement itself, or at least of the interaction of #quanta.

https://youtu.be/ykObAiS4ugg?si=3cmfCG_8Z54PCwRH

Text
culturevulturette
culturevulturette

I’m partial to the metric assload system of measure, but to each his or her own.

Text
humongsstuff-binbin0111
humongsstuff-binbin0111
Text
richardvarey
richardvarey

Beyond the Spec Sheet: Why Your Ears (and Heart) Know Best in Audio

The Audiophile’s Dilemma

If you’re anything like me – a self-confessed audio enthusiast who thrives on both the crisp precision of CDs and the boundless access of HD streaming – you’ve probably spent hours poring over spec sheets, reviews, and forum debates. We audiophiles love our frequency response graphs, distortion metrics, and bit depths. But here’s the rub: what if the best audio…

Photo
imakememesdurrrr
imakememesdurrrr
Text
jolymacfie
jolymacfie

RECORDING - Pulse Internet Measurement Forum - Spain

VIDEO | AUDIO | RECAP |  ARCHIVE | PERMALINK
On 8-9 December, 2025, the Internet Society hosted a Pulse Internet Measurement Forum (PIMF) at The Social Hub in Barcelona, Spain. The PIMF offers an opportunity to learn about the various projects that measure the development and resilience of the Internet, as well as how to utilize the openly provided data for research and reports on the challenges…

Text
computer-science-resource-page
computer-science-resource-page

import numpy as np

from scipy.special import sph_harm

from scipy.integrate import tplquad

import matplotlib.pyplot as plt

from mpl_toolkits.mplot3d import Axes3D


class EnergySignature:

def __init__(self, r0=np.array([0, 0, 0]), t0=0):

“”“

初始化能量签名系统

:param r0: 中心点位置

:param t0: 参考时间

”“”

self.r0 = np.array(r0)

self.t0 = t0

self.energy_field = None

self.current_field = None

self.signature = None


def set_energy_field(self, energy_func):

“”“

设置能量密度场函数 u(s, t)

:param energy_func: 函数接收(s, t)返回能量密度

”“”

self.energy_field = energy_func


def set_current_field(self, current_func):

“”“

设置能量流场函数 J(s, t)

:param current_func: 函数接收(s, t)返回流密度向量

”“”

self.current_field = current_func


def compute_velocity_field(self, s, t):

“”“

计算速度场 v(s, t) = J(s, t) / u(s, t)

”“”

if self.energy_field is None or self.current_field is None:

raise ValueError(“能量场和流场必须先设置”)

u = self.energy_field(s, t)

J = self.current_field(s, t)

# 避免除零

u_safe = np.where(np.abs(u) > 1e-10, u, 1e-10)

return J / u_safe


def compute_angular_momentum(self, s_bounds=(-10, 10), tolerance=1e-3):

“”“

计算相对于中心点的总角动量 L(t0)

:param s_bounds: 积分范围

:param tolerance: 积分精度

”“”

def integrand(sx, sy, sz):

s = np.array([sx, sy, sz])

J = self.current_field(s, self.t0)

return np.cross(s, J)


result, _ = tplquad(

lambda sz, sy, sx: integrand(sx, sy, sz),

s_bounds[0], s_bounds[1],

s_bounds[0], s_bounds[1],

s_bounds[0], s_bounds[1],

epsabs=tolerance, epsrel=tolerance

)

return np.array(result)


def radial_energy_profile(self, r_max=10, num_points=100):

“”“

计算径向能量分布 U®

:param r_max: 最大半径

:param num_points: 径向采样点数

”“”

r_values = np.linspace(0, r_max, num_points)

U_values = []


for r in r_values:

# 在固定半径的球面上积分

def surface_integrand(theta, phi):

sx = r * np.sin(theta) * np.cos(phi)

sy = r * np.sin(theta) * np.sin(phi)

sz = r * np.cos(theta)

s = np.array([sx, sy, sz])

return self.energy_field(s, self.t0) * r**2 * np.sin(theta)


integral, _ = dblquad(

surface_integrand,

0, 2*np.pi, # phi

0, np.pi # theta

)

U_values.append(integral)


return r_values, np.array(U_values)


def spherical_harmonic_expansion(self, l_max=5, r_sample=5):

“”“

在固定半径处进行球谐函数展开

:param l_max: 最大球谐次数

:param r_sample: 采样半径

”“”

coefficients = {}


for l in range(l_max + 1):

for m in range(-l, l + 1):

def integrand(theta, phi):

sx = r_sample * np.sin(theta) * np.cos(phi)

sy = r_sample * np.sin(theta) * np.sin(phi)

sz = r_sample * np.cos(theta)

s = np.array([sx, sy, sz])

u_val = self.energy_field(s, self.t0)

# 球谐函数共轭

Y_lm = np.conj(sph_harm(m, l, phi, theta))

return u_val * Y_lm * np.sin(theta)


integral, _ = dblquad(

integrand,

0, 2*np.pi, # phi

0, np.pi # theta

)

coefficients[(l, m)] = integral


return coefficients


def compute_signature(self, l_max=3):

“”“

计算紧凑特征签名向量 S

”“”

# 1. 总角动量

L = self.compute_angular_momentum()


# 2. 总能量

def total_energy_integrand(sx, sy, sz):

s = np.array([sx, sy, sz])

return self.energy_field(s, self.t0)


E_total, _ = tplquad(

total_energy_integrand,

-10, 10, -10, 10, -10, 10

)


# 3. 球谐系数

coeffs = self.spherical_harmonic_expansion(l_max=l_max)


# 4. 构建特征向量

signature_vector = []

signature_vector.extend(L) # 角动量分量

signature_vector.append(E_total) # 总能量


# 添加球谐系数(实部和虚部)

for l in range(l_max + 1):

for m in range(-l, l + 1):

coeff = coeffs[(l, m)]

signature_vector.append(coeff.real)

signature_vector.append(coeff.imag)


self.signature = np.array(signature_vector)

return self.signature


def normalize_signature(self):

“”“

归一化签名向量(形状标准化)

”“”

if self.signature is None:

raise ValueError(“先计算签名向量”)

# 提取总能量(最后一个元素)

E_total = self.signature[-1]

if abs(E_total) > 1e-10:

self.signature = self.signature / abs(E_total)

return self.signature


def encode_signature(self, precision=3):

“”“

将签名向量编码为字符串

:param precision: 小数点精度

”“”

if self.signature is None:

raise ValueError(“先计算签名向量”)

normalized = self.normalize_signature()

# 四舍五入并转换为字符串

rounded = np.round(normalized, precision)

str_components = [f"{x:+.3f}“ for x in rounded]

return ”“.join(str_components)


def dblquad(func, phi_min, phi_max, theta_min, theta_max, epsabs=1e-4, epsrel=1e-4):

”“"简化版二重积分”“”

from scipy.integrate import dblquad as scipy_dblquad

try:

result, _ = scipy_dblquad(func, phi_min, phi_max, theta_min, theta_max,

epsabs=epsabs, epsrel=epsrel)

return result, 0

except:

# 数值积分失败时返回近似值

return 0, 0


# 示例使用

if __name__ == “__main__”:

# 创建能量签名系统

signature_system = EnergySignature(r0=[0, 0, 0], t0=0)


# 定义示例能量场(高斯分布)

def example_energy_field(s, t):

r = np.linalg.norm(s)

return np.exp(-r**2 / 2)


# 定义示例流场(旋转流)

def example_current_field(s, t):

x, y, z = s

# 简单的涡旋流场

Jx = -y * np.exp(-np.linalg.norm(s)**2 / 2)

Jy = x * np.exp(-np.linalg.norm(s)**2 / 2)

Jz = 0

return np.array([Jx, Jy, Jz])


# 设置场函数

signature_system.set_energy_field(example_energy_field)

signature_system.set_current_field(example_current_field)


# 计算签名

signature = signature_system.compute_signature(l_max=2)

print(“原始签名向量:”)

print(signature)


# 归一化

normalized = signature_system.normalize_signature()

print(“\n归一化签名向量:”)

print(normalized)


# 编码为字符串

encoded = signature_system.encode_signature()

print(“\n编码签名:”)

print(encoded)


# 计算角动量

L = signature_system.compute_angular_momentum()

print(“\n总角动量:”)

print(L)

Text
girlactionfigure
girlactionfigure


historyfeels

Despite how it sounds today, a butt load was once a perfectly respectable and widely used unit of measurement.

The term comes from the medieval English word butt, which referred to a large wooden barrel used to store and transport liquids such as wine, ale, beer, and occasionally oil or vinegar. A standard butt held 128 gallons, making it one of the largest liquid measures in common use.

The unit traces back to trade practices in Europe, especially the wine trade. Barrels were sized deliberately to match shipping explanations, taxation rules, and storage needs. A butt was equal to 2 hogsheads, 4 kilderkins, or 8 barrels. These measurements mattered deeply in an era when commerce depended on physical containers rather than abstract volume markings.

Over time, the phrase drifted out of formal use but survived in everyday language, where its meaning became humorous rather than practical. What was once a technical term slowly transformed into slang, losing its connection to shipping ledgers and dockside warehouses.

Images like this show how literal the phrase once was. A butt load was not exaggeration. It was a specific amount, counted, taxed, and transported with precision in a world built around wood, iron hoops, and handwritten records.

Added fact
In modern terms, 128 gallons is roughly 485 liters, meaning a single butt could weigh over 1,000 pounds when filled with wine, which required specialized handling and reinforced cellar floors.

Text
richardvarey
richardvarey

Measurements, Models, and What We Really Hear

In hi‑fi, the loudest arguments aren’t about whether physics works. They are about what counts as “real” in listening: the numbers on a screen, or the experiences in a room.***The Objectivist View: When “Good Enough” Really IsObjectivist‑leaning audiophiles start from the premise that sound is a physical phenomenon, and that well‑chosen measurements plus controlled listening tests are the best…