Die Suche ergab 30 Treffer

von SkrixlerAnon
Dienstag 28. Februar 2017, 22:59
Forum: Sonstige (Pygame, PyOpenGL, ...)
Thema: Graph - exponentiell durch zwei Punkte
Antworten: 55
Zugriffe: 15225

Re: Graph - exponentiell durch zwei Punkte

Von einer Hyperbel hab ich noch nie was gehört.
Wenn es eine Hyperbel ist dann muss ich ja a und b neu zusammenstellen.
von SkrixlerAnon
Dienstag 28. Februar 2017, 22:20
Forum: Sonstige (Pygame, PyOpenGL, ...)
Thema: Graph - exponentiell durch zwei Punkte
Antworten: 55
Zugriffe: 15225

Re: Graph - exponentiell durch zwei Punkte

Doch schau die Formel vom Beitrag am Mittwoch 8. Februar 2017, 22:09 an.
Aber egal, wenn es keine Exponentialfunktion und keine Logarithmusfunktion ist, was ist es dann?
Quadratische Funktion kann ich mir nicht vorstellen, weil es keine Parabel ist.
Sinus, cosinus und tangens auch nicht.
von SkrixlerAnon
Dienstag 28. Februar 2017, 22:06
Forum: Sonstige (Pygame, PyOpenGL, ...)
Thema: Graph - exponentiell durch zwei Punkte
Antworten: 55
Zugriffe: 15225

Re: Graph - exponentiell durch zwei Punkte

Aber die Formel hatte ich doch die ganze zeit.
Es ist eine logarithmus funktion?
von SkrixlerAnon
Dienstag 28. Februar 2017, 21:44
Forum: Sonstige (Pygame, PyOpenGL, ...)
Thema: Graph - exponentiell durch zwei Punkte
Antworten: 55
Zugriffe: 15225

Re: Graph - exponentiell durch zwei Punkte

Die da
p2 = (p1 * V1) / V2
von SkrixlerAnon
Dienstag 28. Februar 2017, 21:32
Forum: Sonstige (Pygame, PyOpenGL, ...)
Thema: Graph - exponentiell durch zwei Punkte
Antworten: 55
Zugriffe: 15225

Re: Graph - exponentiell durch zwei Punkte

Die Kurve ist doch isotherm.
Also ist T doch konstant und wenn ich nach p2 umstelle hab ich wieder die selbe Formel.
von SkrixlerAnon
Dienstag 28. Februar 2017, 20:56
Forum: Sonstige (Pygame, PyOpenGL, ...)
Thema: Graph - exponentiell durch zwei Punkte
Antworten: 55
Zugriffe: 15225

Re: Graph - exponentiell durch zwei Punkte

p1/p2 = V2/V1

oder

(p1*V1)/T1 = (p2*V2)/T2
von SkrixlerAnon
Dienstag 28. Februar 2017, 19:33
Forum: Sonstige (Pygame, PyOpenGL, ...)
Thema: Graph - exponentiell durch zwei Punkte
Antworten: 55
Zugriffe: 15225

Re: Graph - exponentiell durch zwei Punkte

Eigentlich denk ich schon die ganze Zeit aufzuhören.
Ich glaub mein gejammere wollt ihr nicht lesen. Ich fass mich kurz.
Naja wenn das nicht exponential ist dann ist es vielleicht ein logarithmus.
Hab nach geschaut wie ich eine ln funktion mache, aber ich habe keine ahnung wie ich eine ln-funktion ...
von SkrixlerAnon
Montag 27. Februar 2017, 13:57
Forum: Sonstige (Pygame, PyOpenGL, ...)
Thema: Graph - exponentiell durch zwei Punkte
Antworten: 55
Zugriffe: 15225

Re: Graph - exponentiell durch zwei Punkte

[codebox=python file=Unbenannt.txt]# Graph (exponential) erstellen
# Soll durch S1(V1/P1) und S2(V2/P2) gehen.
import matplotlib.pyplot as plt
import numpy as np

p1 = 1.0
p2 = 8.0
V1 = 2.0
V2 = 0.25

#p2 = (p1 * V1) / V2
#print("p2 = %f" % float(p2))

#a = float(((p2)**(p2/7)))
#b = float(((p1/p2 ...
von SkrixlerAnon
Sonntag 26. Februar 2017, 20:45
Forum: Sonstige (Pygame, PyOpenGL, ...)
Thema: Graph - exponentiell durch zwei Punkte
Antworten: 55
Zugriffe: 15225

Re: Graph - exponentiell durch zwei Punkte

Wenn sie es falsch verstanden hätte, dann hätte sie es durch gestrichen und nicht a vereinfacht. Und wie gesagt ist meine und deine Funktion gleich.
von SkrixlerAnon
Sonntag 26. Februar 2017, 20:17
Forum: Sonstige (Pygame, PyOpenGL, ...)
Thema: Graph - exponentiell durch zwei Punkte
Antworten: 55
Zugriffe: 15225

Re: Graph - exponentiell durch zwei Punkte

a*b**V ist keine Exponentialfunktion. Was ist es dann?
von SkrixlerAnon
Sonntag 26. Februar 2017, 20:14
Forum: Sonstige (Pygame, PyOpenGL, ...)
Thema: Graph - exponentiell durch zwei Punkte
Antworten: 55
Zugriffe: 15225

Re: Graph - exponentiell durch zwei Punkte

Ich hab diese Funktion und wie ich es gerechnet habe meiner Mathelehrerin gezeigt und sie hat gesagt das ich es richtig berechnet hab. Sie hat nur noch "a" vereinfacht.
von SkrixlerAnon
Sonntag 26. Februar 2017, 19:53
Forum: Sonstige (Pygame, PyOpenGL, ...)
Thema: Graph - exponentiell durch zwei Punkte
Antworten: 55
Zugriffe: 15225

Re: Graph - exponentiell durch zwei Punkte

Besser?

[codebox=pycon file=Unbenannt.txt]# Graph (exponential) erstellen
# Soll durch S1(V1/P1) und S2(V2/P2) gehen.
import matplotlib.pyplot as plt
import numpy as np

p1 = 1.0
p2 = 8.0
V1 = 2.0
V2 = 0.25

#p2 = (p1 * V1) / V2
#print("p2 = %f" % float(p2))

a = float(((p2)**(p2/7)))
b = float ...
von SkrixlerAnon
Sonntag 26. Februar 2017, 19:39
Forum: Sonstige (Pygame, PyOpenGL, ...)
Thema: Graph - exponentiell durch zwei Punkte
Antworten: 55
Zugriffe: 15225

Re: Graph - exponentiell durch zwei Punkte

Hab die Funktion noch etwas vereinfacht, deswegen die 7 und die 4 in Zeile 17 und 18.
Warum ist die Formel falsch?
von SkrixlerAnon
Sonntag 26. Februar 2017, 16:42
Forum: Sonstige (Pygame, PyOpenGL, ...)
Thema: Graph - exponentiell durch zwei Punkte
Antworten: 55
Zugriffe: 15225

Re: Graph - exponentiell durch zwei Punkte

Ich glaub ich bin dem Ziel eines richtigen Graphen näher gekommen.
Nein ich bin nicht happy Beispielcodes aus dem Internet rauszufischen und es dann an meinem anzupassen.

[codebox=pycon file=Unbenannt.txt]# Druck (p2) berechnen
#p1 = float(input("Druck p1 in bar = "))
#V1 = float(input("Volumen V1 ...
von SkrixlerAnon
Montag 13. Februar 2017, 16:48
Forum: Sonstige (Pygame, PyOpenGL, ...)
Thema: Graph - exponentiell durch zwei Punkte
Antworten: 55
Zugriffe: 15225

Re: Graph - exponentiell durch zwei Punkte

Danke.
Ich werde es meinem Lehrer zeigen. Vielleicht sieht er ja einen Fehler.
Aber das Programm für ein paar Tage liegen lassen kann ich leider nicht, weil wenn ich schon weiß das die richtige Lösung so nah ist kann ich das so nicht liegen lassen.

Ich werd mir jetzt weiter Pygame anschauen und ...
von SkrixlerAnon
Montag 13. Februar 2017, 07:02
Forum: Sonstige (Pygame, PyOpenGL, ...)
Thema: Graph - exponentiell durch zwei Punkte
Antworten: 55
Zugriffe: 15225

Re: Graph - exponentiell durch zwei Punkte

Ich habe mir die Formeln nicht ausgedacht.
Die erste Formel hab ich aus einer pdf datei die 3000 Seiten hat. Dann hab ich gemerkt das es so nicht gehen kann. Deswegen hab ich mich mal über Exponentialfunktion schlauer gemacht. Ich hab halt nachgeschaut ob es noch andere Formeln gibt. Dann kam ich ...
von SkrixlerAnon
Sonntag 12. Februar 2017, 23:45
Forum: Sonstige (Pygame, PyOpenGL, ...)
Thema: Graph - exponentiell durch zwei Punkte
Antworten: 55
Zugriffe: 15225

Re: Graph - exponentiell durch zwei Punkte

Deine Exponentialfunktion und meine sind ein und dieselben.
von SkrixlerAnon
Sonntag 12. Februar 2017, 23:32
Forum: Sonstige (Pygame, PyOpenGL, ...)
Thema: Graph - exponentiell durch zwei Punkte
Antworten: 55
Zugriffe: 15225

Re: Graph - exponentiell durch zwei Punkte

Ich rate keine Formeln.

https://www.amazon.de/Formelsammlung-Technologie-Merkhilfe-Mathematik-Technik/dp/3941951912/ref=sr_1_1?ie=UTF8&qid=1486938285&sr=8-1&keywords=9783941951914

Und noch das Schulbuch:
https://www.amazon.de/Technologie-Energie-Thermodynamik-Energietechnik-Energieeinsatz/dp ...
von SkrixlerAnon
Sonntag 12. Februar 2017, 19:27
Forum: Sonstige (Pygame, PyOpenGL, ...)
Thema: Graph - exponentiell durch zwei Punkte
Antworten: 55
Zugriffe: 15225

Re: Graph - exponentiell durch zwei Punkte

Also meine Funktion lautet:

f(x) = 1/(((1/8)**1/1.75)**2)*(((1/8)**1/1.75)**x)

Genau so hab ich die Funktion in meinem Taschenrechner eingegeben und mein Taschenrechner zeigt mir die richtigen Werte an:

X | Y
0.25 | 8
2 | 1

Ich hab mir Geogebra heruntergeladen und dort schaut die Funktion ...