1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299
|
/*******************************************************************************
*
* McStas, neutron ray-tracing package
* Copyright(C) 2007 Risoe National Laboratory.
*
* %I
* Written by: Mads Bertelsen
* Date: 20.08.15
* Version: $Revision: 0.1 $
* Origin: University of Copenhagen
*
* Component that takes a number of Union processes and constructs a Union material
*
* %D
* Part of the Union components, a set of components that work together and thus
* sperates geometry and physics within McStas.
* The use of this component requires other components to be used.
*
* 1) One specifies a number of processes using process components
* 2) These are gathered into material definitions using this component
* 3) Geometries are placed using Union_box/cylinder/sphere, assigned a material
* 4) A Union_master component placed after all of the above
*
* Only in step 4 will any simulation happen, and per default all geometries
* defined before the master, but after the previous will be simulated here.
*
* There is a dedicated manual available for the Union_components
*
* Algorithm:
* Described elsewhere
*
* %P
* INPUT PARAMETERS:
* process_string: [string] Comma seperated names of physical processes
* my_absorption: [1/m] Inverse penetration depth from absorption at standard energy
* absorber: [0/1] Control parameter, if set to 1 the material will have no scattering processes
* init: [string] Name of Union_init component (typically "init", default)
*
* CALCULATED PARAMETERS:
* this_material: Structure that contains information on this material
* global_material_element: Element of global_material_list which is a global variable
*
* GLOBAL PARAMETERS:
* global_material_list: List of all defined materials, available in the global scope
*
* %L
*
* %E
******************************************************************************/
DEFINE COMPONENT Union_make_material
SETTING PARAMETERS(string process_string="NULL", my_absorption,absorber=0, string init="init")
/* Neutron parameters: (x,y,z,vx,vy,vz,t,sx,sy,sz,p) */
SHARE
%{
#ifndef Union
#error "The Union_init component must be included before this Union_make_material component"
#endif
// This function checks if global_process_element should be included in this material when using automatic linking, returns 1 if yes, 0 if no.
int automatic_linking_materials_function(struct global_process_element_struct global_process_element, struct pointer_to_global_material_list global_material_list,int current_index) {
// Remember this function is used before the current material is added to global_material_list
// debug info
//MPI_MASTER(
//printf("Checking if process with index %d should be automatically linked to material with index %d\n",global_process_element.component_index,current_index);
//)
// Check if this is the first make_material, which makes the problem simpler.
if (global_material_list.num_elements == 0) {
if (global_process_element.component_index < current_index) return 1;
else return 0;
}
// In case there are more than 1 make_material, global_material_list.elements[global_material_list.num_elements-1].component_index makes sense.
if (global_process_element.component_index < current_index && global_process_element.component_index > global_material_list.elements[global_material_list.num_elements-1].component_index) return 1;
else return 0;
}
void manual_linking_function_material(char *input_string, struct pointer_to_global_process_list *global_process_list, struct pointer_to_1d_int_list *accepted_processes, char *component_name) {
// Need to check a input_string of text for an occurance of name. If it is in the inputstring, yes return 1, otherwise 0.
char *token;
int loop_index;
char local_string[256];
strcpy(local_string,input_string);
// get the first token
token = strtok(local_string,",");
// walk through other tokens
while( token != NULL )
{
//printf( " %s\n", token );
for (loop_index=0;loop_index<global_process_list->num_elements;loop_index++) {
if (strcmp(token,global_process_list->elements[loop_index].name) == 0) {
add_element_to_int_list(accepted_processes,loop_index);
break;
}
if (loop_index == global_process_list->num_elements - 1) {
// All possible process names have been looked through, and the break was not executed.
// Alert the user to this problem by showing the process name that was not found and the currently available processes
printf("\n");
printf("ERROR: The process string \"%s\" in Union material \"%s\" had an entry that did not match a specified process. \n",input_string,component_name);
printf(" The unrecoignized process name was: \"%s\" \n",token);
printf(" The processes available at this point (need to be defined before the material): \n");
for (loop_index=0;loop_index<global_process_list->num_elements;loop_index++)
printf(" %s\n",global_process_list->elements[loop_index].name);
exit(1);
}
}
// Updates the token
token = strtok(NULL,",");
}
}
// This function is needed in initialize of all geometry components
// Possible to insert these functions in make material, as they are only compiled once instead of many times
int manual_linking_function(char *name, char *input_string) {
// Need to check a input_string of text for an occurance of name. If it is in the inputstring, yes return 1, otherwise 0.
char *token;
int return_integer=0;
char local_string[124];
strcpy(local_string,input_string);
/* get the first token */
token = strtok(local_string,",");
/* walk through other tokens */
while( token != NULL )
{
//printf( " %s\n", token );
if (strcmp(token,name) == 0) return_integer=1;
token = strtok(NULL,",");
}
return return_integer;
}
#ifndef MATERIAL_DETECTOR
//struct pointer_to_global_material_list global_material_list = {0,NULL};
#define MATERIAL_DETECTOR dummy
#endif
%}
DECLARE
%{
// Needed for transport to the main component
struct global_material_element_struct global_material_element;
struct physics_struct this_material;
int loop_index;
int found_process;
int specified_processes;
char local_string[256];
struct pointer_to_1d_int_list accepted_processes;
// Add setup for loggers since make_material is called before any volume / master
#ifndef UNION_LOGGER_DECLARE
//struct pointer_to_global_logger_list global_all_volume_logger_list = {0,NULL};
//struct pointer_to_global_logger_list global_specific_volumes_logger_list = {0,NULL};
#define UNION_LOGGER_DECLARE dummy
#endif
%}
INITIALIZE
%{
accepted_processes.num_elements = 0;
accepted_processes.elements = NULL;
/*
// Comma test
printf("Starting comma test on string: %s \n",process_string);
printf("Number of commas in string: %d \n",count_commas(process_string));
exit(1);
*/
if (0 == strcmp(NAME_CURRENT_COMP,"vacuum") || 0 == strcmp(NAME_CURRENT_COMP,"Vacuum")) {
printf("ERROR, a Union material may not be called Vacuum. A vacuum volume may be created by material=\"Vacuum\" in a geometry component.\n");
exit(1);
}
if (0 == strcmp(NAME_CURRENT_COMP,"exit") || 0 == strcmp(NAME_CURRENT_COMP,"Exit")) {
printf("ERROR, a Union material may not be called Exit. A exit volume may be created by material=\"Exit\" in a geometry component.\n");
exit(1);
}
if (my_absorption < 0) {
printf("ERROR, Union make material named %s have a negative absorption cross section!.\n",NAME_CURRENT_COMP);
exit(1);
}
if (_getcomp_index(init) < 0) {
fprintf(stderr,"Union_make_material:%s: Error identifying Union_init component, %s is not a known component name.\n",
NAME_CURRENT_COMP, init);
exit(-1);
}
struct pointer_to_global_process_list *global_process_list = COMP_GETPAR3(Union_init, init, global_process_list);
struct pointer_to_global_material_list *global_material_list = COMP_GETPAR3(Union_init, init, global_material_list);
if (absorber == 0) {
if (process_string && strlen(process_string) && strcmp(process_string,"NULL") && strcmp(process_string, "0")) {
manual_linking_function_material(process_string, global_process_list, &accepted_processes, NAME_CURRENT_COMP);
} else {
for (loop_index=0;loop_index<global_process_list->num_elements;loop_index++) {
// printf("Automatic linking chosen [loop index = %d] with process_string = %s \n",loop_index,process_string);
// automatic linking
// accept a process if index is between current and former index of make_material components
if (1 == automatic_linking_materials_function(global_process_list->elements[loop_index], *global_material_list, INDEX_CURRENT_COMP))
add_element_to_int_list(&accepted_processes,loop_index);
}
}
}
this_material.number_of_processes = accepted_processes.num_elements; // Add number of processes
this_material.is_vacuum = 0; // This material is not vacuum
if (this_material.number_of_processes == 0 && my_absorption == 0) {
printf("ERROR, the material named %s has no processes assigned and no absorption cross section, making it eqvialent to vacuum. Vacuums are assigned by setting material=\"Vacuum\" in a geometry component.\n",NAME_CURRENT_COMP);
exit(1);
}
// add process element to this_material, building an array of processes called p_scattering_array
if (this_material.number_of_processes > 0) this_material.p_scattering_array = malloc(this_material.number_of_processes * sizeof(struct scattering_process_struct));
for (loop_index=0;loop_index<accepted_processes.num_elements;loop_index++) {
this_material.p_scattering_array[loop_index]=*global_process_list->elements[accepted_processes.elements[loop_index]].p_scattering_process;
}
this_material.my_a = my_absorption; // add the absorption to this material
sprintf(this_material.name,"%s",NAME_CURRENT_COMP);
// packing the information into the global_material_element, which is then included in the global_material_list.
sprintf(global_material_element.name,"%s",NAME_CURRENT_COMP);
global_material_element.component_index = INDEX_CURRENT_COMP;
global_material_element.physics = &this_material; // Would be nicer if this material was a pointer, now we have the (small) data two places
add_element_to_material_list(global_material_list, global_material_element);
%}
TRACE
%{
%}
FINALLY
%{
// The elements of the scattering array used static allocation and is thus deallocated automatically
if (this_material.number_of_processes > 0) free(this_material.p_scattering_array);
if (accepted_processes.num_elements > 0) free(accepted_processes.elements);
struct pointer_to_global_geometry_list *global_geometry_list = COMP_GETPAR3(Union_init, init, global_geometry_list);
struct pointer_to_global_master_list *global_master_list = COMP_GETPAR3(Union_init, init, global_master_list);
// Checking if any Union volumes are defined after the master component
#ifdef MASTER_DETECTOR
#ifdef ANY_GEOMETRY_DETECTOR_DECLARE
#ifndef MASTER_DETECTOR_WARNING
for (loop_index=0;loop_index<global_geometry_list->num_elements;loop_index++) {
if (global_geometry_list->elements[loop_index].component_index > global_master_list->elements[global_master_list->num_elements-1].component_index) {
printf("WARNING: No Union_master component defined after Union volume named %s, this components did not affect the simulation in any way.\n",global_geometry_list->elements[loop_index].name);
}
}
// Decided to have this as a warning without exiting the simulation
// In order to only show this warning once, the MASTER_DETECTOR_WARNING is defined
#define MASTER_DETECTOR_WARNING dummy
#endif
#endif
#endif
// Checking if the user remembered to put in a Union_master
#ifndef MASTER_DETECTOR
#ifdef ANY_GEOMETRY_DETECTOR_DECLARE
#ifndef MASTER_DETECTOR_WARNING
printf("\nWARNING: No Union_master component used, these components did not affect the simulation in any way:\n");
for (loop_index=0;loop_index<global_geometry_list->num_elements;loop_index++)
printf(" %s\n",global_geometry_list->elements[loop_index].name);
printf("\n");
// Decided to have this as a warning without exiting the simulation
// In order to only show this warning once, the MASTER_DETECTOR_WARNING is defined
#define MASTER_DETECTOR_WARNING dummy
#endif
#endif
#endif
%}
END
|