Changeset 1110 for trunk/examples/app-fermi/cee/fermi.c
- Timestamp:
- Aug 11, 2008, 9:01:32 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/examples/app-fermi/cee/fermi.c
r665 r1110 6 6 // ====================================================================== 7 7 // AUTHOR: Derrick Kearney, Purdue University 8 // Copyright (c) 2004-200 5Purdue Research Foundation8 // Copyright (c) 2004-2008 Purdue Research Foundation 9 9 // 10 10 // See the file "license.terms" for information on usage and … … 47 47 48 48 49 rpGetString(lib,"input. (temperature).current",&data);49 rpGetString(lib,"input.number(temperature).current",&data); 50 50 T = rpConvertDbl(data, "K", &err); 51 51 if (err) { 52 printf ("Error while retrieving input. (temperature).current\n");52 printf ("Error while retrieving input.number(temperature).current\n"); 53 53 return(1); 54 54 } 55 55 56 56 57 rpGetString(lib,"input. (Ef).current",&data);57 rpGetString(lib,"input.number(Ef).current",&data); 58 58 Ef = rpConvertDbl(data, "eV", &err); 59 59 if (err) { 60 printf ("Error while retrieving input. (Ef).current\n");60 printf ("Error while retrieving input.number(Ef).current\n"); 61 61 return(1); 62 62 }
Note: See TracChangeset
for help on using the changeset viewer.