Post processing FLUKA simulation results

Hi @Singh

Appologies for the delay! A couple of things, if you look at my branch fluka-cern-src in GitHub - makeclean/DAGMC: Direct Accelerated Geometry Monte Carlo Toolkit you’ll see some changes that will allow you to build with the new source.

Also, plotting!

You’ll need to make some changes to the fluka/input.py script in the flair folder, I still havent got around to putting in a patch yet.

You’ll need to make line 2580 look like this

		#if flugg:
		#	self.close()
		#	return None

		# If VOXELS are present, write the first active one
		if "VOXELS" in self.cards:
			for card in self.cards["VOXELS"]:
				if card.notIgnore():
					self.write(card.toStr(fmt=FlukaCard.FORMAT_FREE)+"\n")
					break
		if not flugg:
			self.write(geoline[1]+"\n")		# Write title
			self._writeGeometry(FlukaCard.FORMAT_FREE, FlukaCard.FORMAT_FREE)

With all those changes, you should be running and be able to plot results

Let me know if htis works for you

Thanks

Andy

PS - Loving the new update messages :slight_smile:

Screenshot from 2022-04-09 00-07-24

2 Likes