Changeset 1984
- Timestamp:
- 04/28/08 19:10:44 (2 weeks ago)
- Files:
-
- trunk/data/ab08.szd (moved) (moved from trunk/data/bt94.szd) (1 diff, 1 prop)
- trunk/data/compile1grain.in (modified) (1 diff)
- trunk/data/compile1star.in (deleted)
- trunk/data/compilestars.in (modified) (1 diff)
- trunk/data/pah1_ab08_01.opc (moved) (moved from trunk/data/pah1_bt94_01.opc) (1 diff, 1 prop)
- trunk/data/pah1_ab08_10.opc (moved) (moved from trunk/data/pah1_bt94_10.opc) (1 diff, 1 prop)
- trunk/source/parse_compile.cpp (modified) (3 diffs)
- trunk/source/parse_grain.cpp (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/data/ab08.szd
- Property svn:mergeinfo set
r13 r1984 1 # PAH size distribution from Bakes & Tielens, 1994, ApJ, 427, 8221 # PAH size distribution from Abel et al., 2008, ApJ, submitted 2 2 2010403 # magic number for version control 3 3 power # choices are SSIZE, POWER, EXP1, EXP2, EXP3 trunk/data/compile1grain.in
r13 r1984 1 1 title this will compile only one grain species 2 2 # this will use default of 10 bins 3 #compile onlyagb-silicate ism grains3 #compile agb-silicate ism grains 4 4 # this will do 1 large bin 5 #compile onlyagb-silicate ism grains 15 #compile agb-silicate ism grains 1 6 6 # this will do 1 large bin for pahs 7 compile only pah bt94grains 17 compile pah ab08 grains 1 trunk/data/compilestars.in
r13 r1984 1 title this compiles all sets of stellar atmosphers1 title this compiles the stellar atmosphere grids that you downloaded 2 2 compile stars 3 3 trunk/data/pah1_ab08_01.opc
- Property svn:mergeinfo set
r13 r1984 5 5 1030103 # magic number rfi/mix file 6 6 2010403 # magic number szd file 7 pah1- bt94# grain type label7 pah1-ab08 # grain type label 8 8 1.800000e+000 # specific weight (g/cm^3) 9 9 1.201078e+001 # molecular weight of grain molecule (amu) trunk/data/pah1_ab08_10.opc
- Property svn:mergeinfo set
r13 r1984 5 5 1030103 # magic number rfi/mix file 6 6 2010403 # magic number szd file 7 pah- bt94xx # grain type label, xx will be replaced by bin no.7 pah-ab08xx # grain type label, xx will be replaced by bin no. 8 8 1.800000e+000 # specific weight (g/cm^3) 9 9 1.201078e+001 # molecular weight of grain molecule (amu) trunk/source/parse_compile.cpp
r1969 r1984 214 214 strcpy(chSZD , "ism.szd" ); 215 215 } 216 else if( (ptr = strstr(chCard," BT94")) != NULL )217 { 218 /* Bakes & Tielens 1994size distribution */219 strcpy(chSZD , " bt94.szd" );216 else if( (ptr = strstr(chCard,"AB08")) != NULL ) 217 { 218 /* Abel et al., 2008 size distribution */ 219 strcpy(chSZD , "ab08.szd" ); 220 220 strncpy(ptr," ",4); 221 221 } … … 248 248 fprintf(ioQQQ,"Sorry, but I did not recognize a size distribution file.\n"); 249 249 fprintf(ioQQQ,"Supply a file name between quotes or one of the following "); 250 fprintf(ioQQQ,"keywords: 0m010, 0m100, 1m000, ism, orion, on341, 0n682, bt94\n");250 fprintf(ioQQQ,"keywords: 0m010, 0m100, 1m000, ism, orion, on341, 0n682, ab08\n"); 251 251 cdEXIT(EXIT_FAILURE); 252 252 } … … 310 310 311 311 /* distributed pah */ 312 mie_write_opc( "pah1.rfi" , " bt94.szd" , 10 );312 mie_write_opc( "pah1.rfi" , "ab08.szd" , 10 ); 313 313 314 314 /* single pah */ 315 mie_write_opc( "pah1.rfi" , " bt94.szd" , 1 );315 mie_write_opc( "pah1.rfi" , "ab08.szd" , 1 ); 316 316 } 317 317 /* this option is to compile a single type of grain */ trunk/source/parse_grain.cpp
r1771 r1984 256 256 if( lgSizeDistribution ) 257 257 { 258 mie_read_opc("pah1_ bt94_10.opc",gp);259 } 260 else 261 { 262 mie_read_opc("pah1_ bt94_01.opc",gp);258 mie_read_opc("pah1_ab08_10.opc",gp); 259 } 260 else 261 { 262 mie_read_opc("pah1_ab08_01.opc",gp); 263 263 } 264 264 }
