Warning, file /geant4/examples/extended/hadronic/FissionFragment/src/FFDetectorConstruction.cc was not indexed
or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015
0016
0017
0018
0019
0020
0021
0022
0023
0024
0025
0026
0027
0028
0029
0030
0031
0032
0033
0034
0035
0036
0037
0038
0039
0040
0041
0042
0043
0044
0045
0046
0047
0048
0049
0050
0051 #include "FFDetectorConstruction.hh"
0052
0053 #include "G4Box.hh"
0054 #include "G4Element.hh"
0055 #include "G4Isotope.hh"
0056 #include "G4LogicalVolume.hh"
0057 #include "G4NistManager.hh"
0058 #include "G4PVPlacement.hh"
0059 #include "G4SystemOfUnits.hh"
0060 #include "G4Tubs.hh"
0061 #include "G4VPhysicalVolume.hh"
0062 #include "globals.hh"
0063
0064 static const G4double inch = 2.54 * cm;
0065
0066
0067 FFDetectorConstruction::FFDetectorConstruction() : G4VUserDetectorConstruction()
0068 {
0069 DefineMaterials();
0070 }
0071
0072
0073 G4VPhysicalVolume* FFDetectorConstruction::Construct()
0074 {
0075 G4ThreeVector position;
0076 #ifdef NDEBUG
0077 G4bool const overlapChecking = false;
0078 #else
0079 G4bool const overlapChecking = true;
0080 #endif
0081
0082
0083
0084
0085 const G4double worldSize = 40.0 * inch;
0086 G4Box* const solidWorld = new G4Box("World",
0087 worldSize,
0088 worldSize,
0089 worldSize);
0090 G4LogicalVolume* const logicalWorld = new G4LogicalVolume(solidWorld,
0091 fAir,
0092 solidWorld->GetName());
0093
0094 position.set(0.0, 0.0, 0.0);
0095 G4VPhysicalVolume* const physicalWorld =
0096 new G4PVPlacement(NULL,
0097 position,
0098 logicalWorld,
0099 logicalWorld->GetName(),
0100 NULL,
0101 false,
0102 0,
0103 overlapChecking);
0104
0105
0106
0107
0108 const G4double floorH = 30.0 * inch;
0109 const G4ThreeVector floorPosition(0.0, 0.0, 0.0);
0110 G4Box* const solidFloor = new G4Box("Floor",
0111 worldSize,
0112 worldSize,
0113 floorH * 0.5);
0114 G4LogicalVolume* const logicalFloor = new G4LogicalVolume(solidFloor,
0115 fGraphite,
0116 solidFloor->GetName());
0117
0118 position.set(0.0, 0.0, -floorH * 0.5);
0119 new G4PVPlacement(NULL,
0120 position,
0121 logicalFloor,
0122 logicalFloor->GetName(),
0123 logicalWorld,
0124 false,
0125 0,
0126 overlapChecking);
0127
0128
0129
0130
0131 const G4double tankWallThickness = 0.25 * inch;
0132 const G4double tankOR = 18.0 * inch;
0133 const G4double tankH = 39.0 * inch;
0134 G4Tubs* const solidTank = new G4Tubs("Tank_Wall",
0135 0.0,
0136 tankOR,
0137 tankH * 0.5,
0138 0.0 * deg,
0139 360.0 * deg);
0140 G4LogicalVolume* const logicalTank = new G4LogicalVolume(solidTank,
0141 fAluminum,
0142 solidTank->GetName());
0143
0144 position.set(0.0, 0.0, tankH * 0.5);
0145 new G4PVPlacement(NULL,
0146 position,
0147 logicalTank,
0148 logicalTank->GetName(),
0149 logicalWorld,
0150 false,
0151 0,
0152 overlapChecking);
0153
0154 const G4double tankAirH = 3.0 * inch;
0155 G4Tubs* const solidTankAir = new G4Tubs("Tank_Air",
0156 0.0,
0157 tankOR - tankWallThickness,
0158 tankAirH * 0.5,
0159 0.0 * deg,
0160 360.0 * deg);
0161 G4LogicalVolume* const logicalTankAir = new G4LogicalVolume(solidTankAir,
0162 fAir,
0163 solidTankAir->GetName());
0164
0165 position.set(0.0, 0.0, (tankH - tankAirH) * 0.5);
0166 new G4PVPlacement(NULL,
0167 position,
0168 logicalTankAir,
0169 logicalTankAir->GetName(),
0170 logicalTank,
0171 false,
0172 0,
0173 overlapChecking);
0174
0175 const G4double tankH2OH = (tankH - (tankAirH + tankWallThickness));
0176 G4Tubs* const solidTankH2O = new G4Tubs("Tank_H2O",
0177 0.0,
0178 tankOR - tankWallThickness,
0179 tankH2OH * 0.5,
0180 0.0 * deg,
0181 360.0 * deg);
0182 G4LogicalVolume* const logicalTankH2O = new G4LogicalVolume(solidTankH2O,
0183 fAluminum,
0184 solidTankH2O->GetName());
0185
0186 const G4double centerOfH2O = (tankH - tankH2OH) * 0.5 - tankAirH;
0187 position.set(0.0, 0.0, centerOfH2O);
0188 new G4PVPlacement(NULL,
0189 position,
0190 logicalTankH2O,
0191 logicalTankH2O->GetName(),
0192 logicalTank,
0193 false,
0194 0,
0195 overlapChecking);
0196
0197
0198
0199
0200 const G4double plateX = 3.0 * inch;
0201 const G4double plateY = 0.08 * inch;
0202 const G4double plateZ = 26.0 * inch;
0203 const G4double meatX = 2.75 * inch;
0204 const G4double meatY = 0.04 * inch;
0205 const G4double meatZ = 24.0 * inch;
0206 const G4double xSpacing = 5.0 * inch;
0207 const G4double ySpacing = 0.3 * inch;
0208 const G4double plateRadius = 12.0 * inch;
0209
0210 G4Box* const solidPlate = new G4Box("Plate_Cladding",
0211 plateX * 0.5,
0212 plateY * 0.5,
0213 plateZ * 0.5);
0214 G4LogicalVolume* const logicalPlate = new G4LogicalVolume(solidPlate,
0215 fAluminum,
0216 solidPlate->GetName());
0217
0218 G4Box* const solidMeat = new G4Box("Plate_Meat",
0219 meatX * 0.5,
0220 meatY * 0.5,
0221 meatZ * 0.5);
0222 G4LogicalVolume* const logicalMeat = new G4LogicalVolume(solidMeat,
0223 fUO2_20E,
0224 solidMeat->GetName());
0225
0226 position.set(0.0, 0.0, 0.0);
0227 new G4PVPlacement(NULL,
0228 position,
0229 logicalMeat,
0230 logicalMeat->GetName(),
0231 logicalPlate,
0232 false,
0233 0,
0234 overlapChecking);
0235
0236
0237 bool placeMe;
0238
0239 position.setZ(0.0);
0240 fCopyNumber = 0;
0241 for (double x = 0.0; x <= plateRadius; x += xSpacing) {
0242
0243 for (double y = 0.0; y <= plateRadius; y += ySpacing) {
0244 placeMe = false;
0245
0246
0247 if (std::sqrt(x * x + y * y) < plateRadius) {
0248
0249
0250 if (std::sqrt(x * x + y * y) > 1.0 * inch) {
0251 placeMe = true;
0252 }
0253 }
0254
0255 if (placeMe) {
0256 PlaceFuelPlate(x, y, logicalPlate, logicalTankH2O);
0257 PlaceFuelPlate(x, -y, logicalPlate, logicalTankH2O);
0258 if (x > 0.0) {
0259 PlaceFuelPlate(-x, y, logicalPlate, logicalTankH2O);
0260 PlaceFuelPlate(-x, -y, logicalPlate, logicalTankH2O);
0261 }
0262 }
0263 }
0264 }
0265 G4cout << fCopyNumber << " plates were added to the subcritical assembly" << G4endl;
0266
0267
0268
0269
0270
0271
0272
0273 const G4double sourceH = 2 * inch;
0274 const G4double sourceR = 0.2 * inch;
0275 G4Tubs* const solidSource = new G4Tubs("NeutronSource",
0276 0.0,
0277 sourceR,
0278 sourceH * 0.5,
0279 0.0 * deg,
0280 360.0 * deg);
0281 G4LogicalVolume* const logicalSource = new G4LogicalVolume(solidSource,
0282 fStainlessSteel,
0283 solidSource->GetName());
0284
0285 position.set(0.0, 0.0, 0.0);
0286 new G4PVPlacement(NULL,
0287 position,
0288 logicalSource,
0289 logicalSource->GetName(),
0290 logicalTankH2O,
0291 false,
0292 0,
0293 overlapChecking);
0294
0295
0296
0297
0298 const G4double polyS = 3.0 * inch;
0299 const G4double polyH = 18.0 * inch;
0300 G4Box* const solidPoly = new G4Box("Poly",
0301 polyS,
0302 polyS,
0303 polyH);
0304 G4LogicalVolume* const logicalPoly = new G4LogicalVolume(solidPoly,
0305 fPolyethylene,
0306 solidPoly->GetName());
0307
0308 G4double radiusToPolyCenter = (tankOR / std::sqrt(2.0)) + std::sqrt(2.0) * polyS;
0309 position.set(-radiusToPolyCenter, radiusToPolyCenter, polyH);
0310 new G4PVPlacement(NULL,
0311 position,
0312 logicalPoly,
0313 logicalPoly->GetName(),
0314 logicalWorld,
0315 false,
0316 0,
0317 overlapChecking);
0318
0319 G4double shellR = 0.3 * inch;
0320 G4double shellH = 6.5 * inch;
0321 G4Tubs* const solidShell = new G4Tubs("Detector_Shell",
0322 0.0,
0323 shellR,
0324 shellH * 0.5,
0325 0.0 * deg,
0326 360.0 * deg);
0327 G4LogicalVolume* const logicalShell = new G4LogicalVolume(solidShell,
0328 fStainlessSteel,
0329 solidShell->GetName());
0330
0331 position.set(0.0, 0.0, 0.0);
0332 new G4PVPlacement(NULL,
0333 position,
0334 logicalShell,
0335 logicalShell->GetName(),
0336 logicalPoly,
0337 false,
0338 0,
0339 overlapChecking);
0340
0341 G4double BF3R = 0.2 * inch;
0342 G4double BF3H = 6.0 * inch;
0343 G4Tubs* const solidBF3 = new G4Tubs("Detector_BF3_Core",
0344 0.0,
0345 BF3R,
0346 BF3H * 0.5,
0347 0.0 * deg,
0348 360.0 * deg);
0349 G4LogicalVolume* const logicalBF3 = new G4LogicalVolume(solidBF3,
0350 fBF3_96E,
0351 solidBF3->GetName());
0352
0353 position.set(0.0, 0.0, 0.0);
0354 new G4PVPlacement(NULL,
0355 position,
0356 logicalBF3,
0357 logicalBF3->GetName(),
0358 logicalShell,
0359 false,
0360 0,
0361 overlapChecking);
0362
0363 return physicalWorld;
0364 }
0365
0366
0367 void FFDetectorConstruction::DefineMaterials(void)
0368 {
0369 static G4NistManager* const nist = G4NistManager::Instance();
0370
0371 fAir = nist->FindOrBuildMaterial("G4_AIR");
0372 fAluminum = nist->FindOrBuildMaterial("G4_Al");
0373 fGraphite = nist->FindOrBuildMaterial("G4_GRAPHITE");
0374 fPolyethylene = nist->FindOrBuildMaterial("G4_POLYETHYLENE");
0375 fStainlessSteel = nist->FindOrBuildMaterial("G4_STAINLESS-STEEL");
0376 fWater = nist->FindOrBuildMaterial("G4_WATER");
0377
0378
0379
0380
0381
0382
0383
0384
0385
0386
0387
0388
0389
0390
0391 G4double const U235Enrichment = 0.2;
0392 G4double const U238Enrichment = 0.8;
0393 G4Isotope* const iU235 = new G4Isotope("iU235",
0394 92,
0395 235,
0396 235.053930 * (g / mole));
0397 G4Isotope* const iU238 = new G4Isotope("iU238",
0398 92,
0399 238,
0400 238.050788 * (g / mole));
0401
0402 G4Element* const U235 = new G4Element("U235",
0403 "U235",
0404 1);
0405 U235->AddIsotope(iU235,
0406 1.0);
0407 G4Element* const U238 = new G4Element("U238",
0408 "U238",
0409 1);
0410 U238->AddIsotope(iU238,
0411 1.0);
0412 G4Element* const oxygen = nist->FindOrBuildElement("O");
0413
0414 const G4double UO2MolecularWeight =
0415 U235->GetA() * U235Enrichment + U238->GetA() * U238Enrichment + oxygen->GetA() * 2;
0416 const G4double U235MassFraction = (U235->GetA() * U235Enrichment) / UO2MolecularWeight;
0417 const G4double U238MassFraction = (U238->GetA() * U238Enrichment) / UO2MolecularWeight;
0418 const G4double oxygenMassFraction = (oxygen->GetA() * 2) / UO2MolecularWeight;
0419
0420 fUO2_20E = new G4Material("UO2_20E",
0421 10.97 * (g / cm3),
0422 3);
0423 fUO2_20E->AddElement(U235,
0424 U235MassFraction);
0425 fUO2_20E->AddElement(U238,
0426 U238MassFraction);
0427 fUO2_20E->AddElement(oxygen,
0428 oxygenMassFraction);
0429
0430
0431
0432
0433
0434
0435 G4double const B10Enrichment = 0.96;
0436 G4double const B11Enrichment = 0.04;
0437 G4Isotope* const iB10 = new G4Isotope("iB10",
0438 5,
0439 10,
0440 10.0129370 * (g / mole));
0441 G4Isotope* const iB11 = new G4Isotope("iB11",
0442 5,
0443 11,
0444 11.0093054 * (g / mole));
0445
0446 G4Element* const B10 = new G4Element("B10",
0447 "B10",
0448 1);
0449 B10->AddIsotope(iB10,
0450 1.0);
0451 G4Element* const B11 = new G4Element("B11",
0452 "B11",
0453 1);
0454 B11->AddIsotope(iB11,
0455 1.0);
0456 G4Element* const flouride = nist->FindOrBuildElement("F");
0457
0458 const G4double BF3MolecularWeight =
0459 B10->GetA() * B10Enrichment + B11->GetA() * B11Enrichment + flouride->GetA() * 3;
0460 const G4double B10MassFraction = (B10->GetA() * B10Enrichment) / BF3MolecularWeight;
0461 const G4double B11MassFraction = (B11->GetA() * B11Enrichment) / BF3MolecularWeight;
0462 const G4double flourideMassFraction = (flouride->GetA() * 3) / BF3MolecularWeight;
0463
0464 fBF3_96E = new G4Material("BF3_96E",
0465 2.5 * (kg / m3),
0466 3);
0467 fBF3_96E->AddElement(B10,
0468 B10MassFraction);
0469 fBF3_96E->AddElement(B11,
0470 B11MassFraction);
0471 fBF3_96E->AddElement(flouride,
0472 flourideMassFraction);
0473 }
0474
0475
0476 void FFDetectorConstruction::PlaceFuelPlate(double x, double y,
0477 G4LogicalVolume* const myLogicalVolume,
0478 G4LogicalVolume* const parentLogicalVolume)
0479 {
0480 G4ThreeVector position(x, y);
0481 std::ostringstream copyName;
0482 copyName << "Plate@Location X:" << std::setprecision(2) << x / inch << " Y:" << y / inch;
0483
0484 new G4PVPlacement(NULL,
0485 position,
0486 myLogicalVolume,
0487 copyName.str(),
0488 parentLogicalVolume,
0489 false,
0490 fCopyNumber++,
0491 true);
0492 }
0493
0494
0495 FFDetectorConstruction::~FFDetectorConstruction()
0496 {
0497
0498 }