diff --git a/parameter_calculation/Untitled.ipynb b/parameter_calculation/Untitled.ipynb index ae4f58c8fafe4a14fd4d3338d275b9ee55436c76..4ddf2d421c70413a661e2e48ddffd3b4eb07b8be 100644 --- a/parameter_calculation/Untitled.ipynb +++ b/parameter_calculation/Untitled.ipynb @@ -241,6 +241,67 @@ "Note that we choose coordinates where drums from both, sublattice A and B, are displaced in positive direction when they move closer to their respective driving electrode." ] }, + { + "cell_type": "markdown", + "metadata": {}, + "source": [ + "# Eliska parameters" + ] + }, + { + "cell_type": "code", + "execution_count": 168, + "metadata": {}, + "outputs": [], + "source": [ + "a = 1.\n", + "f = 25000.\n", + "m = 2328*(1e-6)*(np.pi*((250e-6)**2))\n", + "k_loc = m*((2.0*np.pi*f)**2)\n", + "k_coup = k_loc*0.2\n", + "k_base = k_coup*0.1\n", + "Q = 30000.\n", + "c = (2.0*np.pi*f/Q)\n", + "l0 = 5.\n", + "delta0 = 1.\n", + "alpha = 1." + ] + }, + { + "cell_type": "code", + "execution_count": 169, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "m: 4.571017310973148e-10\n", + "localStiffness: 11.278533142459056\n", + "k0_A: 27388152213.022964\n", + "k0_B: 21959869792.42382\n", + "k1: 493480220.0544679\n", + "k2: 2467401100.2723393\n", + "c: 5.235987755982988\n", + "l0: 5.0\n", + "delta0: 1.0\n", + "alpha: 1.0\n" + ] + } + ], + "source": [ + "print(f\"m: {m}\")\n", + "print(f\"localStiffness: {k_loc}\")\n", + "print(f\"k0_A: {k_loc/m+1.1*0.5*k_coup/m}\")\n", + "print(f\"k0_B: {k_loc/m-1.1*0.5*k_coup/m}\")\n", + "print(f\"k1: {k_base/m}\")\n", + "print(f\"k2: {k_coup*0.5/m}\")\n", + "print(f\"c: {c}\")\n", + "print(f\"l0: {l0}\")\n", + "print(f\"delta0: {delta0}\")\n", + "print(f\"alpha: {alpha}\")" + ] + }, { "cell_type": "code", "execution_count": null,