Imported Upstream version 4.6.0
[debian/atlc] / src / non_gui / check_parameters_of_create_bmp_for_circ_in_rect.c
1 /* atlc - arbitrary transmission line calculator, for the analysis of
2 transmission lines are directional couplers. 
3
4 Copyright (C) 2002. Dr. David Kirkby, PhD (G8WRB).
5
6 This program is free software; you can redistribute it and/or
7 modify it under the terms of the GNU General Public License
8 as published by the Free Software Foundation; either package_version 2
9 of the License, or (at your option) any later package_version.
10
11 This program is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 GNU General Public License for more details.
15
16 You should have received a copy of the GNU General Public License
17 along with this program; if not, write to the Free Software
18 Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307,
19 USA.
20
21 Dr. David Kirkby, e-mail drkirkby at ntlworld.com 
22
23 */
24 #include "config.h"
25
26 #ifdef HAVE_STDLIB_H
27 #include <stdlib.h>
28 #endif  
29
30 #include "definitions.h"
31
32
33 /* These items are supplied on the command line */
34
35 extern double dd, WW, HH, xx, yy, Er1;
36 extern int d, W, H, x, y;
37
38 void check_parameters_of_create_bmp_for_circ_in_rect(void)
39 {
40    if( Er1<1.0) 
41       exit_with_msg_and_exit_code("The relative permittivity (Er) must be >= 1.0",100);
42    if (dd/2.0-yy >= HH/2) 
43       exit_with_msg_and_exit_code("The circular inner will be touching the bottom of the outer !!! ",100);
44    if (dd/2.0+yy >= HH/2) 
45       exit_with_msg_and_exit_code("The circular inner will be touching the top of the outer !!! ",100);
46    if (dd/2.0+xx >= WW/2) 
47       exit_with_msg_and_exit_code("The circular inner will be touching the right side of the outer !!! ",100);
48    if (dd/2.0-xx >= WW/2) 
49       exit_with_msg_and_exit_code("The circular inner will be touching the left side of the outer !!! ",100);
50       
51 }
52
53 void check_circ_in_rect_int(void)
54 {
55 /*
56    if(verbose==TRUE)
57       fprintf(stderr,"d_outer = %d d_inner=%d offset=%h \n",D, d, h);
58       */
59 }