⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 units.c

📁 a full 3D simulation of electromagnetic waves with efficient absorbing boundary a full 3D simulation
💻 C
字号:
/* Copyright notice:   radarFDTD - A free 3D-FDTD simulation for EM-waves with GPML-ABCs ;-)   Copyright (C) 2000 Carsten Aulbert   (    I used the following program as a 'manual', so in my opinion this needs to be quoted:   ToyFDTD, version 1.02    The if-I-can-do-it-you-can-do-it FDTD!    Copyright (C) 1998,1999 Laurie E. Miller, Paul Hayes, Matthew O'Keefe    )    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    the Free Software Foundation; either version 2 of the License, or    (at your option) any later version.    This program is distributed in the hope that it will be useful,    but WITHOUT ANY WARRANTY; without even the implied warranty of    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the    GNU General Public License for more details.    You should have received a copy of the GNU General Public License    along with this program; if not, write to the Free Software    Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA*/void PrintCorrectOrder(PRECISION number, FILE *output){  int order = 1 + (int) log(number) / log(10);    switch(order){  case -15: fprintf(output, "%5.2g f", number);break;  case -14: fprintf(output, "%5.2g f", number);break;  case -13: fprintf(output, "%5.2g f", number);break;  case -12: fprintf(output, "%5.2g p", number);break;  case -11: fprintf(output, "%5.2g p", number);break;  case -10: fprintf(output, "%5.2g p", number);break;  case -9: fprintf(output, "%5.2g n", number);break;  case -8: fprintf(output, "%5.2g n", number);break;  case -7: fprintf(output, "%5.2g n", number);break;  case -6: fprintf(output, "%5.2g 

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -