Hackster is hosting Impact Spotlights: Robotics. Watch the stream live on Thursday!Hackster is hosting Impact Spotlights: Robotics. Stream on Thursday!
NKTgLaw
Published © CC BY

Exploring the NKTg Law: NKTm as a New Measurement Standard

A research project to define and test a new physical unit NKTm under the NKTg Law (Law of Varying Inertia) — quantifying effects when positi

BeginnerWork in progress53
Exploring the NKTg Law: NKTm as a New Measurement Standard

Things used in this project

Hardware components

Hardware, Component Kit
Hardware, Component Kit
×1

Story

Read more

Schematics

NKTm

NKTm

Code

Exploring the NKTg Law — Defining the NKTm Unit for Varying Inertia Dynamics

Python
“Thanks for checking out my project! The NKTm unit is proposed as a new measurement standard in the NKTg Law of Varying Inertia. I’d love to hear your thoughts — do you see potential applications in space exploration, engineering, or simulations of variable-mass systems? Any feedback, questions, or critique are welcome!”
# Compute NKTg1 and NKTg2 for Neptune using NASA data
# Author: Nguyen Khanh Tung

# Constants from NASA JPL Horizons (Neptune 2023–2024)
x_km = 4.498e9      # position [km]
v_km_s = 5.43       # velocity [km/s]
m_kg = 1.0243e26    # mass [kg]

# Convert units
x_m = x_km * 1000
v_m_s = v_km_s * 1000

# Momentum
p = m_kg * v_m_s

# NKTg1: position-momentum interaction
nktg1 = x_m * p

# Assume tiny mass variation (gas escape hypothesis)
dm_dt = -2.0e-5  # kg/s
nktg2 = dm_dt * p

# Total NKTg
nktg_total = (nktg1**2 + nktg2**2)**0.5

print("NKTg1 =", nktg1, "NKTm")
print("NKTg2 =", nktg2, "NKTm")
print("NKTg total =", nktg_total, "NKTm")

Credits

NKTgLaw
5 projects • 0 followers
The movement tendency of an object in space depends on the relationship between its position, velocity, and mass. NKTg = f(x, v, m)

Comments