⊛ SYMMETRIC MODE — Boson States (Integer Spin)
SIMULATION CONTROLS
f = (n/2L)√(T/μ)
Oscillation Freq
1.855e43 Hz
String Mass
0.0041 Mₚ
Zero-Point Energy
ℏω/2
PHP API RESPONSE
{
"endpoint": "/api/string/compute",
"mode": "SYMMETRIC",
"n_mode": 2,
"frequency_hz": 1.855e43,
"tension_alpha": 0.72,
"string_mass_planck": 0.0041,
"zero_point_energy": "ℏω/2",
"status": "computed",
"timestamp": "loading..."
}
ENDPOINT SOURCE
<?php // StringController.php namespace App\Http\Controllers; class StringController { public function compute(Request $req) { $mode = $req->input('mode'); $n = $req->input('n_mode'); $tension = $req->input('alpha'); $freq = ($n/(2*$L))*sqrt($tension); return response()->json([ 'frequency_hz' => $freq, 'status' => 'computed' ]); } }