diff --git a/qucs-transcalc/ChangeLog b/qucs-transcalc/ChangeLog index 855d931a..faf95e10 100644 --- a/qucs-transcalc/ChangeLog +++ b/qucs-transcalc/ChangeLog @@ -1,3 +1,8 @@ +2009-05-14 Stefan Jahn + + * coax.cpp (show_results): Fixed computation of cut-off + frequencies. + 2008-06-29 Stefan Jahn * qucstrans.cpp (slotCopyToClipBoard): Added clipboard copy for diff --git a/qucs-transcalc/coax.cpp b/qucs-transcalc/coax.cpp index 7f3f6657..47e52b92 100644 --- a/qucs-transcalc/coax.cpp +++ b/qucs-transcalc/coax.cpp @@ -3,7 +3,7 @@ * * Copyright (C) 2001 Gopal Narayanan * Copyright (C) 2002 Claudio Girardi - * Copyright (C) 2005, 2006 Stefan Jahn + * Copyright (C) 2005, 2006, 2009 Stefan Jahn * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -188,25 +188,25 @@ void coax::show_results() setResult (1, atten_dielectric, "dB"); n = 1; - fc = C0 / (M_PI * (dout + din)/(double) n); + fc = C0 / sqrt (er * mur) / (M_PI_2 * (dout + din)/(double) n); setResult (2, "none"); if (fc <= f) { char text[256], txt[256]; strcpy (text, "TE(1,1) "); m = 2; - fc = C0 / (2 * (dout - din)/(double) (m-1)); + fc = C0 / sqrt (er * mur) / (M_PI_2 * (dout + din)/(double) m); while ((fc <= f) && (m<10)) { sprintf(txt, "TE(n,%d) ",m); strcat(text,txt); m++; - fc = C0 / (2 * (dout - din)/(double) (m-1)); + fc = C0 / sqrt (er * mur) / (M_PI_2 * (dout + din)/(double) m); } setResult (2, text); } setResult (3, "none"); m = 1; - fc = C0 / (2 * (dout - din)/(float) m); + fc = C0 / sqrt (er * mur) / ((dout - din)/(float) m); if (fc <= f) { char text[256], txt[256]; strcpy (text, ""); @@ -214,7 +214,7 @@ void coax::show_results() sprintf(txt, "TM(n,%d) ",m); strcat(text,txt); m++; - fc = C0 / (2 * (dout - din)/(double) m); + fc = C0 / sqrt (er * mur) / ((dout - din)/(double) m); } setResult (3, text); }