46be416750
Transcalc is an analysis and synthesis tool for calculating the electrical and physical properties of different kinds of RF and microwave transmission lines. Transcalc was somewhat inspired by the functionality of Agilent Technologies' commercial program linecalc. Transcalc aspires to be more functional in the long run and well-documented with appropriate references to formulas that are used. Transcalc is built using the GIMP toolkit (GTK) for its GUI interface. For each type of transmission line, using dialog boxes, you can enter values for the various parameters, and either calculate its electrical properties (analyze), or use the given electrical requirements to sythesize physical parameters of the required transmission line. Available transmission lines (this list will expand with subsequent releases): * microstrip * rectangular waveguide * coax * coupled microstrip
16 lines
607 B
Text
16 lines
607 B
Text
$NetBSD: patch-ac,v 1.1.1.1 2003/03/23 12:25:03 dmcmahill Exp $
|
|
|
|
--- src/setup_body.c.orig Mon Jul 15 07:38:37 2002
|
|
+++ src/setup_body.c
|
|
@@ -68,6 +68,11 @@ transtype_int ()
|
|
if ((strcmp(text,"Rectangular Waveguide")) == 0) return RECTWAVEGUIDE;
|
|
if ((strcmp(text,"Coaxial Line")) == 0) return COAX;
|
|
if ((strcmp(text,"Coupled Microstrip")) == 0) return C_MICROSTRIP;
|
|
+ fprintf(stderr, "Error: transtype_int(). Unknown line type \"%s\"\n", text);
|
|
+ exit(1);
|
|
+ } else {
|
|
+ fprintf(stderr, "Error: transtype_int(). gtk_entry_get_text returned NULL pointer\n");
|
|
+ exit(1);
|
|
}
|
|
}
|
|
|