Das ist das Problem
Ich habe ein kleines Javaprogamm geschrieben mit dem kann ich die benötigte Zugkraft ausrechnen wenn man Nahtlosestahlrohre Ziehen will. Das brauche ich für meinen Arbeit das geht auch.
Z.B.:
Aus dem Vorrohr "Luppe" 30Außen Durchmesser * 5 Wandstärke"
Zu Fertigrohr "25mm AD * 4mm"
Material ST52 = Faktor 1
Einfach gezogen
9 Tonnen Zugkraft
Das program past nicht in dieses Forum ( zu lang )
ist aber abgeleitet von
http://de.selfhtml.org/javascript/sprache/anzeige/bruttobetrag.htm#
Ein einfaches Progamm das ich verändert habe.
Und jetzt wollte ich noch das Grafisch darstellen.
Das ist alles. Leider bin ich nicht so vertraut mit Java.
<script LANGUAGE="JavaScript">
<!-- Begin
var i, xa, ya, xe, ye, xs, ys, xf, yf, x, y, xss, yss ;
l(50,30,150,30) ; // 1.Linie
l(50,50,150,50) ; // 2. Linie
l(50,90,150,90) ; //
l(50,110,150,110)
l(150,30,200,50)
l(150,50,200,60)
l(150,90,200,80)
l(150,110,200,90)
l(200,50,300,50)
l(200,60,300,60)
l(200,80,300,80)
l(200,90,300,90)
function l(xa,ya,xe,ye) {
xs=xe-xa
ys=ye-ya
xss=Math.abs(xs)
yss=Math.abs(ys)
if (xss>=yss) {; s=xs; }
if (xss<yss) {; s=ys; }
s=Math.abs(s)
xf=xs/s
yf=ys/s
for (i = 0; i <= s; ++ i) {
x=xa+(i*xf)
y=ya+(i*yf)
if (document.layers) {
document.write("<layer top="+y+" left="+x+"><img SRC='rot.GIF' NOSAVE height=1 width=1></layer>")
}
if (document.all) {
document.write("<div style='position:absolute;top:"+y+"px;left:"+x+"px'><img SRC='rot.GIF' NOSAVE height=1 width=1></div>")
}
}
}
// End -->
</script>