{"id":1592,"date":"2021-01-11T14:05:32","date_gmt":"2021-01-11T14:05:32","guid":{"rendered":"https:\/\/pickedshares.com\/?p=1592"},"modified":"2021-07-27T11:49:31","modified_gmt":"2021-07-27T11:49:31","slug":"online-calculator-resultant-force","status":"publish","type":"post","link":"https:\/\/pickedshares.com\/en\/online-calculator-resultant-force\/","title":{"rendered":"Online calculator resultant force"},"content":{"rendered":"\n<p>This is an <em>online calculator resultant force<\/em> with the capability to calculate the resultant force of several forces, up to 4 in total in a <a href=\"https:\/\/mypages.iit.edu\/~krawczyk\/phdsza\/02conc.htm\" target=\"_blank\" rel=\"noreferrer noopener\">concurrent force system<\/a>. The forces and angles must each be entered as positive numbers, the calculated resulting force and its angle are output graphically and as a numerical value. The resultant force F<sub>R<\/sub> is shown in orange.<\/p>\n\n\n\n<html>\n<head>\n<\/head>\n<body>\n<div id=\"resulting\" style=\"display: grid;grid-template-columns: 40% 40%;column-gap:0.5rem;\">\n<div><label for=\"f1\">Force F<sub>1<\/sub> in N<\/label>\n<p><input id=\"f1\" type=\"text\"><\/p><\/div>\n<div><label for=\"alpha\">Angle &alpha;<\/label>\n<p><input id=\"alpha\" type=\"text\"><\/p><\/div>\n<div><label for=\"f2\">Force F<sub>2<\/sub> in N<\/label>\n<p><input id=\"f2\" type=\"text\"><\/p><\/div>\n<div><label for=\"beta\">Angle &beta;<\/label>\n<p><input id=\"beta\" type=\"text\"><\/p><\/div>\n<div><label for=\"f3\">Force F<sub>3<\/sub> in N<\/label>\n<p><input id=\"f3\" type=\"text\"><\/p><\/div>\n<div><label for=\"gamma\">Angle &gamma;<\/label>\n<p><input id=\"gamma\" type=\"text\"><\/p><\/div>\n<div><label for=\"f4\">Force F<sub>4<\/sub> in N<\/label>\n<p><input id=\"f4\" type=\"text\"><\/p><\/div>\n<div><label for=\"delta\">Angle &delta;<\/label>\n<p><input id=\"delta\" type=\"text\"><\/p><\/div><\/div>\n<div style=\"width:100%;\" id=\"leinwand_container\"><svg style=\"width:100;\" id =\"leinwand\">\n  \n<\/svg><\/div>\n\n<!--noptimize-->\n<script src=\"https:\/\/ajax.googleapis.com\/ajax\/libs\/jquery\/3.5.1\/jquery.min.js\"><\/script>\n<script>\n\n$('input').keyup(function(){\nleinwand = document.getElementById('leinwand');\nleinwand_container = document.getElementById('leinwand_container');\nleinwand.innerHTML = \"\";\n\n     \nf1 = document.getElementById('f1').value;\nf2 = document.getElementById('f2').value;\nf3 = document.getElementById('f3').value;\nf4 = document.getElementById('f4').value;    \nalpha = document.getElementById('alpha').value;\nbeta = document.getElementById('beta').value;\ngamma = document.getElementById('gamma').value;\ndelta = document.getElementById('delta').value;\n\nf1 = f1.replace( \/,\/,\".\" );\nf2 = f2.replace( \/,\/,\".\" );\nf3 = f3.replace( \/,\/,\".\" );\nf4 = f4.replace( \/,\/,\".\" );\nalpha = alpha.replace( \/,\/,\".\" );\nalpha = alpha * Math.PI\/180;\nbeta = beta.replace( \/,\/,\".\" );\nbeta = beta * Math.PI\/180;\ngamma = gamma.replace( \/,\/,\".\" );\ngamma = gamma * Math.PI\/180;\ndelta = delta.replace( \/,\/,\".\" );\ndelta = delta * Math.PI\/180;\n\n\nleinwand.style.width = 0.9 * leinwand_container.clientWidth;\nleinwand.style.height = 0.9 * leinwand_container.clientWidth;\n\ncenterx = leinwand.clientWidth\/2;\ncentery = leinwand.clientHeight\/2;\n\n\/\/Start point x-axis\nAx = 0;\nAy = centery;\n\/\/End point x-axis\nBx = leinwand.clientWidth\nBy = centery;\n\/\/Start point y-axis\nCx = centerx;\nCy = leinwand.clientHeight;\n\/\/End point y-axis\nDx = centerx;\nDy = 0;\n\nconsole.log(centerx);\n\n\/\/ calc scale\nf1x = f1 * Math.cos(alpha);\nf1y = f1 * Math.sin(alpha);\nf2x = f2 * Math.cos(beta);\nf2y = f2 * Math.sin(beta);\nf3x = f3 * Math.cos(gamma);\nf3y = f3 * Math.sin(gamma);\nf4x = f4 * Math.cos(delta);\nf4y = f4 * Math.sin(delta);\nfrx = f1x+f2x+f3x+f4x;\nfry = f1y+f2y+f3y+f4y;\nfr = Math.sqrt(frx**2 + fry **2);\nmaximum = Math.max(Math.abs(f1x),Math.abs(f1y),Math.abs(f2x),Math.abs(f2y),Math.abs(f3x),Math.abs(f3y),Math.abs(f4x),Math.abs(f4y),Math.abs(frx),Math.abs(fry),Math.abs(fr));\nconsole.log('maximum: '+maximum);\nconsole.log('f1x: '+f1x);\nscale = (leinwand.clientHeight\/2)\/(maximum*1.1);\nconsole.log('scale: '+scale);\n\n\/\/draw axes\n\/\/ Koordinatensystem\n\/\/ x\nleinwand.innerHTML = leinwand.innerHTML + \"<line x1='\"+Ax+\"' y1='\"+Ay+\"' x2='\"+Bx+\"' y2='\"+By+\"' style='stroke:rgb(0,0,0);stroke-width:1' \/>\";\n\/\/Pfeilspitze\nleinwand.innerHTML = leinwand.innerHTML + \"<polygon points='\"+Bx+\",\"+By+\" \"+(Bx-15)+\",\"+(By-4)+\" \"+(Bx-15)+\",\"+(By+4)+\"' style='fill:black;stroke:black;stroke-width:1' \/>\";\n\n\/\/y\nleinwand.innerHTML = leinwand.innerHTML + \"<line x1='\"+Cx+\"' y1='\"+Cy+\"' x2='\"+Dx+\"' y2='\"+Dy+\"' style='stroke:rgb(0,0,0);stroke-width:1' \/>\";\n\/\/Pfeilspitze\nleinwand.innerHTML = leinwand.innerHTML + \"<polygon points='\"+(Dx)+\",\"+(Dy)+\" \"+(Dx-4)+\",\"+(Dy+15)+\" \"+(Dx+4)+\",\"+(Dy+15)+\"' style='fill:black;stroke:black;stroke-width:1' \/>\";\n\n\/\/x axis annotation\nleinwand.innerHTML = leinwand.innerHTML + \"<text xml:space='preserve' style='font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25' x='\"+(Bx-10)+\"' y='\"+(By+20)+\"' id='text21637'><tspan sodipodi:role='line' id='tspan21635' x='\"+(Bx-10)+\"' y='\"+(By+20)+\"' style='font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:Symbol;stroke-width:0.25' dy='0 0'>x<\/tspan><\/text>\";\n\n\/\/y axis annotation\nleinwand.innerHTML = leinwand.innerHTML + \"<text xml:space='preserve' style='font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:#000000;fill-opacity:1;stroke:none;stroke-width:0.25' x='\"+(Dx-20)+\"' y='\"+(Dy+10)+\"' id='text21637'><tspan sodipodi:role='line' id='tspan21635' x='\"+(Dx-20)+\"' y='\"+(Dy+10)+\"' style='font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:Symbol;stroke-width:0.25' dy='0 0'>y<\/tspan><\/text>\";\n\nif (f1 != 0){\n\nfxtrans = (f1x*scale + centerx);\nfytrans = (centery - f1y*scale);\nangle = alpha;\n\n\n\/\/draw f1\nleinwand.innerHTML = leinwand.innerHTML + \"<line x1='\"+centerx+\"' y1='\"+centery+\"' x2='\"+fxtrans+\"' y2='\"+fytrans+\"' style='stroke:rgb(230,0,0);stroke-width:2' \/>\";\n\/\/Pfeilspitze\nleinwand.innerHTML = leinwand.innerHTML + \"<polygon points='\"+fxtrans+\",\"+fytrans+\" \"+(fxtrans-15)+\",\"+(fytrans+4)+\" \"+(fxtrans-15)+\",\"+(fytrans-4)+\"' style='fill:rgb(230,0,0);stroke:rgb(230,0,0);stroke-width:1' transform='rotate(\"+(-angle*180\/Math.PI)+\" \"+fxtrans+\" \"+fytrans+\")' \/>\";\n\nangle = alpha;\nr = f1;\nif (angle<=Math.PI){\n\nleinwand.innerHTML = leinwand.innerHTML + \"<g stroke=rgb(230,0,0) fill='none' stroke-width='1' stroke-linecap='round'><path d='M \"+(centerx + r*0.2*scale)+\" \"+centery+\" A \"+r*0.2*scale+\" \"+r*0.2*scale+\" 0 0 0 \"+(centerx+0.2*r*Math.cos(angle)*scale)+\" \"+(centery-0.2*r*Math.sin(angle)*scale)+\"' \/><\/g>\";\n} else {\nleinwand.innerHTML = leinwand.innerHTML + \"<g stroke=rgb(230,0,0) fill='none' stroke-width='1' stroke-linecap='round'><path d='M \"+(centerx + r*0.2*scale)+\" \"+centery+\" A \"+r*0.2*scale+\" \"+r*0.2*scale+\" 0 0 0 \"+(centerx+0.2*r*Math.cos(Math.PI)*scale)+\" \"+(centery-0.2*r*Math.sin(Math.PI)*scale)+\"' \/><\/g>\";\nleinwand.innerHTML = leinwand.innerHTML + \"<g stroke=rgb(230,0,0) fill='none' stroke-width='1' stroke-linecap='round'><path d='M \"+(centerx - r*0.2*scale)+\" \"+centery+\" A \"+r*0.2*scale+\" \"+r*0.2*scale+\" 0 0 0 \"+(centerx+0.2*r*Math.cos(angle)*scale)+\" \"+(centery-0.2*r*Math.sin(angle)*scale)+\"' \/><\/g>\";\n\n}\n\nalpha=alpha\/Math.PI*180;\nalpha=alpha*100;\nalpha=Math.round(alpha);\nalpha=alpha\/100;\n\n\/\/Text\nleinwand.innerHTML = leinwand.innerHTML + \"<text xml:space='preserve' style='font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:rgb(230,0,0);fill-opacity:1;stroke:none;stroke-width:0.25' x='\"+(10)+\"' y='\"+(30)+\"' id='text21637'><tspan sodipodi:role='line' id='tspan21635' x='\"+(10)+\"' y='\"+(30)+\"' style='font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:Symbol;stroke-width:0.25' dy='0 0'>F<tspan style='font-size:10px' id='tspan21661' dy='1.4'>1<\/tspan><tspan style='font-size:16px' id='tspan21661' dy='-1.4'> = \"+f1+\" N, <\/tspan><tspan style='font-family:symbol;font-size:16px' id='tspan21661' dy='0'>a = \"+alpha+\" \u00b0<\/tspan><\/tspan><\/text>\";\n\n}\n\nif (f2 != 0){\n\nfxtrans = (f2x*scale + centerx);\nfytrans = (centery - f2y*scale);\nangle=beta;\n\n\n\/\/draw f2\nleinwand.innerHTML = leinwand.innerHTML + \"<line x1='\"+centerx+\"' y1='\"+centery+\"' x2='\"+fxtrans+\"' y2='\"+fytrans+\"' style='stroke:rgb(50,200,50);stroke-width:2' \/>\";\n\/\/Pfeilspitze\nleinwand.innerHTML = leinwand.innerHTML + \"<polygon points='\"+fxtrans+\",\"+fytrans+\" \"+(fxtrans-15)+\",\"+(fytrans+4)+\" \"+(fxtrans-15)+\",\"+(fytrans-4)+\"' style='fill:rgb(50,200,50);stroke:rgb(50,200,50);stroke-width:1' transform='rotate(\"+(-angle*180\/Math.PI)+\" \"+fxtrans+\" \"+fytrans+\")' \/>\";\n\nangle = beta;\nr = f2;\nif (angle<=Math.PI){\n\nleinwand.innerHTML = leinwand.innerHTML + \"<g stroke=rgb(50,200,50) fill='none' stroke-width='1' stroke-linecap='round'><path d='M \"+(centerx + r*0.2*scale)+\" \"+centery+\" A \"+r*0.2*scale+\" \"+r*0.2*scale+\" 0 0 0 \"+(centerx+0.2*r*Math.cos(angle)*scale)+\" \"+(centery-0.2*r*Math.sin(angle)*scale)+\"' \/><\/g>\";\n} else {\nleinwand.innerHTML = leinwand.innerHTML + \"<g stroke=rgb(50,200,50) fill='none' stroke-width='1' stroke-linecap='round'><path d='M \"+(centerx + r*0.2*scale)+\" \"+centery+\" A \"+r*0.2*scale+\" \"+r*0.2*scale+\" 0 0 0 \"+(centerx+0.2*r*Math.cos(Math.PI)*scale)+\" \"+(centery-0.2*r*Math.sin(Math.PI)*scale)+\"' \/><\/g>\";\nleinwand.innerHTML = leinwand.innerHTML + \"<g stroke=rgb(50,200,50) fill='none' stroke-width='1' stroke-linecap='round'><path d='M \"+(centerx - r*0.2*scale)+\" \"+centery+\" A \"+r*0.2*scale+\" \"+r*0.2*scale+\" 0 0 0 \"+(centerx+0.2*r*Math.cos(angle)*scale)+\" \"+(centery-0.2*r*Math.sin(angle)*scale)+\"' \/><\/g>\";\n\n}\n\nbeta=beta\/Math.PI*180;\nbeta=beta*100;\nbeta=Math.round(beta);\nbeta=beta\/100;\n\n\/\/Text\nleinwand.innerHTML = leinwand.innerHTML + \"<text xml:space='preserve' style='font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:rgb(50,200,50);fill-opacity:1;stroke:none;stroke-width:0.25' x='\"+(10)+\"' y='\"+(50)+\"' id='text21637'><tspan sodipodi:role='line' id='tspan21635' x='\"+(10)+\"' y='\"+(50)+\"' style='font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:Symbol;stroke-width:0.25' dy='0 0'>F<tspan style='font-size:10px' id='tspan21661' dy='1.4'>2<\/tspan><tspan style='font-size:16px' id='tspan21661' dy='-1.4'> = \"+f2+\" N, <\/tspan><tspan style='font-family:symbol;font-size:16px' id='tspan21661' dy='0'>b = \"+beta+\" \u00b0<\/tspan><\/tspan><\/text>\";\n\n\n}\n\nif (f3 != 0){\n\nfxtrans = (f3x*scale + centerx);\nfytrans = (centery - f3y*scale);\nangle=gamma;\n\n\n\/\/draw f3\nleinwand.innerHTML = leinwand.innerHTML + \"<line x1='\"+centerx+\"' y1='\"+centery+\"' x2='\"+fxtrans+\"' y2='\"+fytrans+\"' style='stroke:rgb(0,100,255);stroke-width:2' \/>\";\n\/\/Pfeilspitze\nleinwand.innerHTML = leinwand.innerHTML + \"<polygon points='\"+fxtrans+\",\"+fytrans+\" \"+(fxtrans-15)+\",\"+(fytrans+4)+\" \"+(fxtrans-15)+\",\"+(fytrans-4)+\"' style='fill:rgb(0,100,255);stroke:rgb(0,100,255);stroke-width:1' transform='rotate(\"+(-angle*180\/Math.PI)+\" \"+fxtrans+\" \"+fytrans+\")' \/>\";\n\nangle = gamma;\nr = f3;\nif (angle<=Math.PI){\n\nleinwand.innerHTML = leinwand.innerHTML + \"<g stroke=rgb(0,100,255) fill='none' stroke-width='1' stroke-linecap='round'><path d='M \"+(centerx + r*0.2*scale)+\" \"+centery+\" A \"+r*0.2*scale+\" \"+r*0.2*scale+\" 0 0 0 \"+(centerx+0.2*r*Math.cos(angle)*scale)+\" \"+(centery-0.2*r*Math.sin(angle)*scale)+\"' \/><\/g>\";\n} else {\nleinwand.innerHTML = leinwand.innerHTML + \"<g stroke=rgb(0,100,255) fill='none' stroke-width='1' stroke-linecap='round'><path d='M \"+(centerx + r*0.2*scale)+\" \"+centery+\" A \"+r*0.2*scale+\" \"+r*0.2*scale+\" 0 0 0 \"+(centerx+0.2*r*Math.cos(Math.PI)*scale)+\" \"+(centery-0.2*r*Math.sin(Math.PI)*scale)+\"' \/><\/g>\";\nleinwand.innerHTML = leinwand.innerHTML + \"<g stroke=rgb(0,100,255) fill='none' stroke-width='1' stroke-linecap='round'><path d='M \"+(centerx - r*0.2*scale)+\" \"+centery+\" A \"+r*0.2*scale+\" \"+r*0.2*scale+\" 0 0 0 \"+(centerx+0.2*r*Math.cos(angle)*scale)+\" \"+(centery-0.2*r*Math.sin(angle)*scale)+\"' \/><\/g>\";\n\n}\n\ngamma=gamma\/Math.PI*180;\ngamma=gamma*100;\ngamma=Math.round(gamma);\ngamma=gamma\/100;\n\n\/\/Text\nleinwand.innerHTML = leinwand.innerHTML + \"<text xml:space='preserve' style='font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:rgb(0,100,255);fill-opacity:1;stroke:none;stroke-width:0.25' x='\"+(10)+\"' y='\"+(70)+\"' id='text21637'><tspan sodipodi:role='line' id='tspan21635' x='\"+(10)+\"' y='\"+(70)+\"' style='font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:Symbol;stroke-width:0.25' dy='0 0'>F<tspan style='font-size:10px' id='tspan21661' dy='1.4'>3<\/tspan><tspan style='font-size:16px' id='tspan21661' dy='-1.4'> = \"+f3+\" N, <\/tspan><tspan style='font-family:symbol;font-size:16px' id='tspan21661' dy='0'>g = \"+gamma+\" \u00b0<\/tspan><\/tspan><\/text>\";\n\n\n\n}\n\nif (f4 != 0){\n\nfxtrans = (f4x*scale + centerx);\nfytrans = (centery - f4y*scale);\nangle=delta;\n\n\n\/\/draw f4\nleinwand.innerHTML = leinwand.innerHTML + \"<line x1='\"+centerx+\"' y1='\"+centery+\"' x2='\"+fxtrans+\"' y2='\"+fytrans+\"' style='stroke:rgb(250,50,150);stroke-width:2' \/>\";\n\/\/Pfeilspitze\nleinwand.innerHTML = leinwand.innerHTML + \"<polygon points='\"+fxtrans+\",\"+fytrans+\" \"+(fxtrans-15)+\",\"+(fytrans+4)+\" \"+(fxtrans-15)+\",\"+(fytrans-4)+\"' style='fill:rgb(250,50,150);stroke:rgb(250,50,150);stroke-width:1' transform='rotate(\"+(-angle*180\/Math.PI)+\" \"+fxtrans+\" \"+fytrans+\")' \/>\";\n\nangle = delta;\nr = f4;\nif (angle<=Math.PI){\n\nleinwand.innerHTML = leinwand.innerHTML + \"<g stroke=rgb(250,50,150) fill='none' stroke-width='1' stroke-linecap='round'><path d='M \"+(centerx + r*0.2*scale)+\" \"+centery+\" A \"+r*0.2*scale+\" \"+r*0.2*scale+\" 0 0 0 \"+(centerx+0.2*r*Math.cos(angle)*scale)+\" \"+(centery-0.2*r*Math.sin(angle)*scale)+\"' \/><\/g>\";\n} else {\nleinwand.innerHTML = leinwand.innerHTML + \"<g stroke=rgb(250,50,150) fill='none' stroke-width='1' stroke-linecap='round'><path d='M \"+(centerx + r*0.2*scale)+\" \"+centery+\" A \"+r*0.2*scale+\" \"+r*0.2*scale+\" 0 0 0 \"+(centerx+0.2*r*Math.cos(Math.PI)*scale)+\" \"+(centery-0.2*r*Math.sin(Math.PI)*scale)+\"' \/><\/g>\";\nleinwand.innerHTML = leinwand.innerHTML + \"<g stroke=rgb(250,50,150) fill='none' stroke-width='1' stroke-linecap='round'><path d='M \"+(centerx - r*0.2*scale)+\" \"+centery+\" A \"+r*0.2*scale+\" \"+r*0.2*scale+\" 0 0 0 \"+(centerx+0.2*r*Math.cos(angle)*scale)+\" \"+(centery-0.2*r*Math.sin(angle)*scale)+\"' \/><\/g>\";\n\n}\n\ndelta=delta\/Math.PI*180;\ndelta=delta*100;\ndelta=Math.round(delta);\ndelta=delta\/100;\n\n\/\/Text\nleinwand.innerHTML = leinwand.innerHTML + \"<text xml:space='preserve' style='font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:rgb(250,50,150);fill-opacity:1;stroke:none;stroke-width:0.25' x='\"+(10)+\"' y='\"+(90)+\"' id='text21637'><tspan sodipodi:role='line' id='tspan21635' x='\"+(10)+\"' y='\"+(90)+\"' style='font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:Symbol;stroke-width:0.25' dy='0 0'>F<tspan style='font-size:10px' id='tspan21661' dy='1.4'>4<\/tspan><tspan style='font-size:16px' id='tspan21661' dy='-1.4'> = \"+f4+\" N, <\/tspan><tspan style='font-family:symbol;font-size:16px' id='tspan21661' dy='0'>d = \"+delta+\" \u00b0<\/tspan><\/tspan><\/text>\";\n\n\n}\n\nif (frx != 0 || fry != 0){\n\nfxtrans = (frx*scale + centerx);\nfytrans = (centery - fry*scale);\n\n\nangle=Math.atan(fry\/frx);\n\nif ((Math.sign(frx)==-1 || frx == 0) && Math.sign(fry)==1){\nangle = angle+ Math.PI;\n\/\/console.log('Q2');\n}\nif (Math.sign(frx)==-1 && (Math.sign(fry)==-1 || fry == 0)){\nangle = angle+ Math.PI;\n\/\/console.log('Q3');\n}\nif (Math.sign(frx)==1 && Math.sign(fry)==-1){\nangle = angle+ 2*Math.PI;\n\/\/console.log('Q4');\n}\n\n\/\/console.log('Winkel der Resultierenden ist: '+angle*180\/Math.PI);\n\n\/\/draw fr\nleinwand.innerHTML = leinwand.innerHTML + \"<line x1='\"+centerx+\"' y1='\"+centery+\"' x2='\"+fxtrans+\"' y2='\"+fytrans+\"' style='stroke:rgb(250,150,0);stroke-width:2' \/>\";\n\/\/Pfeilspitze\nleinwand.innerHTML = leinwand.innerHTML + \"<polygon points='\"+fxtrans+\",\"+fytrans+\" \"+(fxtrans-15)+\",\"+(fytrans+4)+\" \"+(fxtrans-15)+\",\"+(fytrans-4)+\"' style='fill:rgb(250,150,0);stroke:rgb(250,150,0);stroke-width:1' transform='rotate(\"+(-angle*180\/Math.PI)+\" \"+fxtrans+\" \"+fytrans+\")' \/>\";\n\n\/\/ Ma\u00dfkreis epsilon\n\nif (angle<=Math.PI){\n\nleinwand.innerHTML = leinwand.innerHTML + \"<g stroke=rgb(250,150,0) fill='none' stroke-width='1' stroke-linecap='round'><path d='M \"+(centerx + fr*0.2*scale)+\" \"+centery+\" A \"+fr*0.2*scale+\" \"+fr*0.2*scale+\" 0 0 0 \"+(centerx+0.2*fr*Math.cos(angle)*scale)+\" \"+(centery-0.2*fr*Math.sin(angle)*scale)+\"' \/><\/g>\";\n} else {\nleinwand.innerHTML = leinwand.innerHTML + \"<g stroke=rgb(250,150,0) fill='none' stroke-width='1' stroke-linecap='round'><path d='M \"+(centerx + fr*0.2*scale)+\" \"+centery+\" A \"+fr*0.2*scale+\" \"+fr*0.2*scale+\" 0 0 0 \"+(centerx+0.2*fr*Math.cos(Math.PI)*scale)+\" \"+(centery-0.2*fr*Math.sin(Math.PI)*scale)+\"' \/><\/g>\";\nleinwand.innerHTML = leinwand.innerHTML + \"<g stroke=rgb(250,150,0) fill='none' stroke-width='1' stroke-linecap='round'><path d='M \"+(centerx - fr*0.2*scale)+\" \"+centery+\" A \"+fr*0.2*scale+\" \"+fr*0.2*scale+\" 0 0 0 \"+(centerx+0.2*fr*Math.cos(angle)*scale)+\" \"+(centery-0.2*fr*Math.sin(angle)*scale)+\"' \/><\/g>\";\n\n}\n\nangle=angle\/Math.PI*180;\nangle=angle*100;\nangle=Math.round(angle);\nangle=angle\/100;\n\nfr=fr*100;\nfr=Math.round(fr);\nfr=fr\/100;\n\n\/\/Text\nleinwand.innerHTML = leinwand.innerHTML + \"<text xml:space='preserve' style='font-style:normal;font-weight:normal;font-size:16px;line-height:1.25;font-family:sans-serif;letter-spacing:0px;word-spacing:0px;fill:rgb(250,150,0);fill-opacity:1;stroke:none;stroke-width:0.25' x='\"+(10)+\"' y='\"+(110)+\"' id='text21637'><tspan sodipodi:role='line' id='tspan21635' x='\"+(10)+\"' y='\"+(110)+\"' style='font-style:normal;font-variant:normal;font-weight:normal;font-stretch:normal;font-family:sans-serif;-inkscape-font-specification:Symbol;stroke-width:0.25' dy='0 0'>F<tspan style='font-size:10px' id='tspan21661' dy='1.4'>R<\/tspan><tspan style='font-size:16px' id='tspan21661' dy='-1.4'> = \"+fr+\" N, <\/tspan><tspan style='font-family:symbol;font-size:16px' id='tspan21661' dy='0'>e = \"+angle+\" \u00b0<\/tspan><\/tspan><\/text>\";\n\n}\n\n\n});\n\n\n\n\n  \n<\/script>\n\n<!--\/noptimize-->\n<\/body>\n<\/html>\n\n\n\n<h3 class=\"wp-block-heading\">An example<\/h3>\n\n\n\n<p>Did something go wrong? Here is an example of what it should look like:<\/p>\n\n\n\n<p>The force F<sub>1<\/sub> is 5 N, with an angle of 45 \u00b0. The second force F<sub>2<\/sub> is 7 N, but the angle here is 215 \u00b0, the third 5 N and 7 \u00b0 and the last force 6 N and 165 \u00b0. The result appears the moment you have entered the last number and should now look like this:<\/p>\n\n\n\n<figure class=\"wp-block-image size-large\"><img loading=\"lazy\" decoding=\"async\" width=\"617\" height=\"614\" src=\"https:\/\/pickedshares.com\/wp-content\/uploads\/2021\/01\/res1.png\" alt=\"Resulting force from several forces\" class=\"wp-image-1578\" srcset=\"https:\/\/pickedshares.com\/wp-content\/uploads\/2021\/01\/res1.png 617w, https:\/\/pickedshares.com\/wp-content\/uploads\/2021\/01\/res1-300x300.png 300w, https:\/\/pickedshares.com\/wp-content\/uploads\/2021\/01\/res1-150x150.png 150w, https:\/\/pickedshares.com\/wp-content\/uploads\/2021\/01\/res1-400x398.png 400w\" sizes=\"auto, (max-width: 617px) 100vw, 617px\" \/><figcaption>Resultant force from several forces<\/figcaption><\/figure>\n\n\n\n<p>The <em>online calculator resultant force<\/em> shows a resultant force with the first force entered, which is then identical to the force entered. If not all forces are entered, the calculation is carried out anyway. In this way, the resulting force for 3 forces or the resulting force for 2 forces can be calculated.<\/p>\n\n\n\n<p>Here you can find <a href=\"https:\/\/pickedshares.com\/en\/tag\/resulting-force\/\">exercises about resultant forces<\/a>.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>Calculate the resulting force from up to 4 concurrent forces.<\/p>\n","protected":false},"author":1,"featured_media":1578,"comment_status":"closed","ping_status":"open","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[79,21,54],"tags":[],"class_list":["post-1592","post","type-post","status-publish","format-standard","has-post-thumbnail","hentry","category-engineering-en","category-engineering-mechanics-i","category-tools-en","infinite-scroll-item","masonry-post","generate-columns","tablet-grid-50","mobile-grid-100","grid-parent","grid-33"],"yoast_head":"<!-- This site is optimized with the Yoast SEO plugin v27.4 - https:\/\/yoast.com\/product\/yoast-seo-wordpress\/ -->\n<title>Online calculator resultant force &#8226; 4 concurrent forces &#8226; pickedshares<\/title>\n<meta name=\"description\" content=\"This online calculator resultant force determines the resultant force from up to 4 concurrent forces, including graphical output.\" \/>\n<meta name=\"robots\" content=\"index, follow, max-snippet:-1, max-image-preview:large, max-video-preview:-1\" \/>\n<link rel=\"canonical\" href=\"https:\/\/pickedshares.com\/en\/online-calculator-resultant-force\/\" \/>\n<meta property=\"og:locale\" content=\"en_US\" \/>\n<meta property=\"og:type\" content=\"article\" \/>\n<meta property=\"og:title\" content=\"Online calculator resulting force\" \/>\n<meta property=\"og:description\" content=\"Calculate the resulting force from up to 4 concurrent forces.\" \/>\n<meta property=\"og:url\" content=\"https:\/\/pickedshares.com\/en\/online-calculator-resultant-force\/\" \/>\n<meta property=\"og:site_name\" content=\"pickedshares\" \/>\n<meta property=\"article:published_time\" content=\"2021-01-11T14:05:32+00:00\" \/>\n<meta property=\"article:modified_time\" content=\"2021-07-27T11:49:31+00:00\" \/>\n<meta property=\"og:image\" content=\"https:\/\/pickedshares.com\/wp-content\/uploads\/2021\/01\/res1twit.png\" \/>\n\t<meta property=\"og:image:width\" content=\"1318\" \/>\n\t<meta property=\"og:image:height\" content=\"904\" \/>\n\t<meta property=\"og:image:type\" content=\"image\/png\" \/>\n<meta name=\"author\" content=\"admin\" \/>\n<meta name=\"twitter:card\" content=\"summary_large_image\" \/>\n<meta name=\"twitter:image\" content=\"https:\/\/pickedshares.com\/wp-content\/uploads\/2021\/01\/res1twit.png\" \/>\n<meta name=\"twitter:creator\" content=\"@pickedshares\" \/>\n<meta name=\"twitter:site\" content=\"@pickedshares\" \/>\n<meta name=\"twitter:label1\" content=\"Written by\" \/>\n\t<meta name=\"twitter:data1\" content=\"admin\" \/>\n\t<meta name=\"twitter:label2\" content=\"Est. reading time\" \/>\n\t<meta name=\"twitter:data2\" content=\"4 minutes\" \/>\n<script type=\"application\/ld+json\" class=\"yoast-schema-graph\">{\"@context\":\"https:\\\/\\\/schema.org\",\"@graph\":[{\"@type\":\"Article\",\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/online-calculator-resultant-force\\\/#article\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/online-calculator-resultant-force\\\/\"},\"author\":{\"name\":\"admin\",\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/#\\\/schema\\\/person\\\/6c617a6a61de9623da53f74a56810033\"},\"headline\":\"Online calculator resultant force\",\"datePublished\":\"2021-01-11T14:05:32+00:00\",\"dateModified\":\"2021-07-27T11:49:31+00:00\",\"mainEntityOfPage\":{\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/online-calculator-resultant-force\\\/\"},\"wordCount\":216,\"publisher\":{\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/#organization\"},\"image\":{\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/online-calculator-resultant-force\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pickedshares.com\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/res1.png\",\"articleSection\":[\"Engineering\",\"Engineering Mechanics I\",\"Tools\"],\"inLanguage\":\"en-US\"},{\"@type\":\"WebPage\",\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/online-calculator-resultant-force\\\/\",\"url\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/online-calculator-resultant-force\\\/\",\"name\":\"Online calculator resultant force &#8226; 4 concurrent forces &#8226; pickedshares\",\"isPartOf\":{\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/#website\"},\"primaryImageOfPage\":{\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/online-calculator-resultant-force\\\/#primaryimage\"},\"image\":{\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/online-calculator-resultant-force\\\/#primaryimage\"},\"thumbnailUrl\":\"https:\\\/\\\/pickedshares.com\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/res1.png\",\"datePublished\":\"2021-01-11T14:05:32+00:00\",\"dateModified\":\"2021-07-27T11:49:31+00:00\",\"description\":\"This online calculator resultant force determines the resultant force from up to 4 concurrent forces, including graphical output.\",\"breadcrumb\":{\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/online-calculator-resultant-force\\\/#breadcrumb\"},\"inLanguage\":\"en-US\",\"potentialAction\":[{\"@type\":\"ReadAction\",\"target\":[\"https:\\\/\\\/pickedshares.com\\\/en\\\/online-calculator-resultant-force\\\/\"]}]},{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/online-calculator-resultant-force\\\/#primaryimage\",\"url\":\"https:\\\/\\\/pickedshares.com\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/res1.png\",\"contentUrl\":\"https:\\\/\\\/pickedshares.com\\\/wp-content\\\/uploads\\\/2021\\\/01\\\/res1.png\",\"width\":617,\"height\":614,\"caption\":\"Resulting force from several forces\"},{\"@type\":\"BreadcrumbList\",\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/online-calculator-resultant-force\\\/#breadcrumb\",\"itemListElement\":[{\"@type\":\"ListItem\",\"position\":1,\"name\":\"Start\",\"item\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/\"},{\"@type\":\"ListItem\",\"position\":2,\"name\":\"Tools\",\"item\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/category\\\/tools-en\\\/\"},{\"@type\":\"ListItem\",\"position\":3,\"name\":\"Engineering\",\"item\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/category\\\/tools-en\\\/engineering-en\\\/\"},{\"@type\":\"ListItem\",\"position\":4,\"name\":\"Online calculator resultant force\"}]},{\"@type\":\"WebSite\",\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/#website\",\"url\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/\",\"name\":\"pickedshares\",\"description\":\"Engineering Design, Project Management, Tools and Exercises\",\"publisher\":{\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/#organization\"},\"potentialAction\":[{\"@type\":\"SearchAction\",\"target\":{\"@type\":\"EntryPoint\",\"urlTemplate\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/?s={search_term_string}\"},\"query-input\":{\"@type\":\"PropertyValueSpecification\",\"valueRequired\":true,\"valueName\":\"search_term_string\"}}],\"inLanguage\":\"en-US\"},{\"@type\":\"Organization\",\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/#organization\",\"name\":\"pickedshares.com\",\"url\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/\",\"logo\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\",\"url\":\"\",\"contentUrl\":\"\",\"caption\":\"pickedshares.com\"},\"image\":{\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/#\\\/schema\\\/logo\\\/image\\\/\"},\"sameAs\":[\"https:\\\/\\\/x.com\\\/pickedshares\",\"https:\\\/\\\/www.instagram.com\\\/pickedshares\\\/\",\"https:\\\/\\\/www.youtube.com\\\/channel\\\/UCSh8qo2-6dhtbZqSLStt3Rg\"]},{\"@type\":\"Person\",\"@id\":\"https:\\\/\\\/pickedshares.com\\\/en\\\/#\\\/schema\\\/person\\\/6c617a6a61de9623da53f74a56810033\",\"name\":\"admin\",\"image\":{\"@type\":\"ImageObject\",\"inLanguage\":\"en-US\",\"@id\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/948d17e3c131a29d2f00c792d96bb1899342a69d8ccda0673ef9089a0988b3bd?s=96&d=mm&r=g\",\"url\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/948d17e3c131a29d2f00c792d96bb1899342a69d8ccda0673ef9089a0988b3bd?s=96&d=mm&r=g\",\"contentUrl\":\"https:\\\/\\\/secure.gravatar.com\\\/avatar\\\/948d17e3c131a29d2f00c792d96bb1899342a69d8ccda0673ef9089a0988b3bd?s=96&d=mm&r=g\",\"caption\":\"admin\"},\"sameAs\":[\"https:\\\/\\\/pickedshares.com\"]}]}<\/script>\n<!-- \/ Yoast SEO plugin. -->","yoast_head_json":{"title":"Online calculator resultant force &#8226; 4 concurrent forces &#8226; pickedshares","description":"This online calculator resultant force determines the resultant force from up to 4 concurrent forces, including graphical output.","robots":{"index":"index","follow":"follow","max-snippet":"max-snippet:-1","max-image-preview":"max-image-preview:large","max-video-preview":"max-video-preview:-1"},"canonical":"https:\/\/pickedshares.com\/en\/online-calculator-resultant-force\/","og_locale":"en_US","og_type":"article","og_title":"Online calculator resulting force","og_description":"Calculate the resulting force from up to 4 concurrent forces.","og_url":"https:\/\/pickedshares.com\/en\/online-calculator-resultant-force\/","og_site_name":"pickedshares","article_published_time":"2021-01-11T14:05:32+00:00","article_modified_time":"2021-07-27T11:49:31+00:00","og_image":[{"width":1318,"height":904,"url":"https:\/\/pickedshares.com\/wp-content\/uploads\/2021\/01\/res1twit.png","type":"image\/png"}],"author":"admin","twitter_card":"summary_large_image","twitter_image":"https:\/\/pickedshares.com\/wp-content\/uploads\/2021\/01\/res1twit.png","twitter_creator":"@pickedshares","twitter_site":"@pickedshares","twitter_misc":{"Written by":"admin","Est. reading time":"4 minutes"},"schema":{"@context":"https:\/\/schema.org","@graph":[{"@type":"Article","@id":"https:\/\/pickedshares.com\/en\/online-calculator-resultant-force\/#article","isPartOf":{"@id":"https:\/\/pickedshares.com\/en\/online-calculator-resultant-force\/"},"author":{"name":"admin","@id":"https:\/\/pickedshares.com\/en\/#\/schema\/person\/6c617a6a61de9623da53f74a56810033"},"headline":"Online calculator resultant force","datePublished":"2021-01-11T14:05:32+00:00","dateModified":"2021-07-27T11:49:31+00:00","mainEntityOfPage":{"@id":"https:\/\/pickedshares.com\/en\/online-calculator-resultant-force\/"},"wordCount":216,"publisher":{"@id":"https:\/\/pickedshares.com\/en\/#organization"},"image":{"@id":"https:\/\/pickedshares.com\/en\/online-calculator-resultant-force\/#primaryimage"},"thumbnailUrl":"https:\/\/pickedshares.com\/wp-content\/uploads\/2021\/01\/res1.png","articleSection":["Engineering","Engineering Mechanics I","Tools"],"inLanguage":"en-US"},{"@type":"WebPage","@id":"https:\/\/pickedshares.com\/en\/online-calculator-resultant-force\/","url":"https:\/\/pickedshares.com\/en\/online-calculator-resultant-force\/","name":"Online calculator resultant force &#8226; 4 concurrent forces &#8226; pickedshares","isPartOf":{"@id":"https:\/\/pickedshares.com\/en\/#website"},"primaryImageOfPage":{"@id":"https:\/\/pickedshares.com\/en\/online-calculator-resultant-force\/#primaryimage"},"image":{"@id":"https:\/\/pickedshares.com\/en\/online-calculator-resultant-force\/#primaryimage"},"thumbnailUrl":"https:\/\/pickedshares.com\/wp-content\/uploads\/2021\/01\/res1.png","datePublished":"2021-01-11T14:05:32+00:00","dateModified":"2021-07-27T11:49:31+00:00","description":"This online calculator resultant force determines the resultant force from up to 4 concurrent forces, including graphical output.","breadcrumb":{"@id":"https:\/\/pickedshares.com\/en\/online-calculator-resultant-force\/#breadcrumb"},"inLanguage":"en-US","potentialAction":[{"@type":"ReadAction","target":["https:\/\/pickedshares.com\/en\/online-calculator-resultant-force\/"]}]},{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pickedshares.com\/en\/online-calculator-resultant-force\/#primaryimage","url":"https:\/\/pickedshares.com\/wp-content\/uploads\/2021\/01\/res1.png","contentUrl":"https:\/\/pickedshares.com\/wp-content\/uploads\/2021\/01\/res1.png","width":617,"height":614,"caption":"Resulting force from several forces"},{"@type":"BreadcrumbList","@id":"https:\/\/pickedshares.com\/en\/online-calculator-resultant-force\/#breadcrumb","itemListElement":[{"@type":"ListItem","position":1,"name":"Start","item":"https:\/\/pickedshares.com\/en\/"},{"@type":"ListItem","position":2,"name":"Tools","item":"https:\/\/pickedshares.com\/en\/category\/tools-en\/"},{"@type":"ListItem","position":3,"name":"Engineering","item":"https:\/\/pickedshares.com\/en\/category\/tools-en\/engineering-en\/"},{"@type":"ListItem","position":4,"name":"Online calculator resultant force"}]},{"@type":"WebSite","@id":"https:\/\/pickedshares.com\/en\/#website","url":"https:\/\/pickedshares.com\/en\/","name":"pickedshares","description":"Engineering Design, Project Management, Tools and Exercises","publisher":{"@id":"https:\/\/pickedshares.com\/en\/#organization"},"potentialAction":[{"@type":"SearchAction","target":{"@type":"EntryPoint","urlTemplate":"https:\/\/pickedshares.com\/en\/?s={search_term_string}"},"query-input":{"@type":"PropertyValueSpecification","valueRequired":true,"valueName":"search_term_string"}}],"inLanguage":"en-US"},{"@type":"Organization","@id":"https:\/\/pickedshares.com\/en\/#organization","name":"pickedshares.com","url":"https:\/\/pickedshares.com\/en\/","logo":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/pickedshares.com\/en\/#\/schema\/logo\/image\/","url":"","contentUrl":"","caption":"pickedshares.com"},"image":{"@id":"https:\/\/pickedshares.com\/en\/#\/schema\/logo\/image\/"},"sameAs":["https:\/\/x.com\/pickedshares","https:\/\/www.instagram.com\/pickedshares\/","https:\/\/www.youtube.com\/channel\/UCSh8qo2-6dhtbZqSLStt3Rg"]},{"@type":"Person","@id":"https:\/\/pickedshares.com\/en\/#\/schema\/person\/6c617a6a61de9623da53f74a56810033","name":"admin","image":{"@type":"ImageObject","inLanguage":"en-US","@id":"https:\/\/secure.gravatar.com\/avatar\/948d17e3c131a29d2f00c792d96bb1899342a69d8ccda0673ef9089a0988b3bd?s=96&d=mm&r=g","url":"https:\/\/secure.gravatar.com\/avatar\/948d17e3c131a29d2f00c792d96bb1899342a69d8ccda0673ef9089a0988b3bd?s=96&d=mm&r=g","contentUrl":"https:\/\/secure.gravatar.com\/avatar\/948d17e3c131a29d2f00c792d96bb1899342a69d8ccda0673ef9089a0988b3bd?s=96&d=mm&r=g","caption":"admin"},"sameAs":["https:\/\/pickedshares.com"]}]}},"_links":{"self":[{"href":"https:\/\/pickedshares.com\/en\/wp-json\/wp\/v2\/posts\/1592","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/pickedshares.com\/en\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/pickedshares.com\/en\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/pickedshares.com\/en\/wp-json\/wp\/v2\/users\/1"}],"replies":[{"embeddable":true,"href":"https:\/\/pickedshares.com\/en\/wp-json\/wp\/v2\/comments?post=1592"}],"version-history":[{"count":11,"href":"https:\/\/pickedshares.com\/en\/wp-json\/wp\/v2\/posts\/1592\/revisions"}],"predecessor-version":[{"id":5968,"href":"https:\/\/pickedshares.com\/en\/wp-json\/wp\/v2\/posts\/1592\/revisions\/5968"}],"wp:featuredmedia":[{"embeddable":true,"href":"https:\/\/pickedshares.com\/en\/wp-json\/wp\/v2\/media\/1578"}],"wp:attachment":[{"href":"https:\/\/pickedshares.com\/en\/wp-json\/wp\/v2\/media?parent=1592"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/pickedshares.com\/en\/wp-json\/wp\/v2\/categories?post=1592"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/pickedshares.com\/en\/wp-json\/wp\/v2\/tags?post=1592"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}