yt generates many fields from the few that are saved on the disk. I am doing 
something weird with TNG data where I basically have 'PartType0' and 
'PartType0_78', where 'PartType0_78' holds data on the gas particles at a 
different snapshot (namely, 78). I basically want yt to act like I have two 
different names for gas particles and generate the temperature, cylindrical 
coordinates, entropy, magnetic field, etc for 'PartType0_78' just as it does 
for 'PartType0'. The fields on disk are named the same. I tracked the fields 
down to yt/frontends/gadget/fields and/or yt/frontends/gadget/fields, and the 
setup_gas_particle_fields function. 

I tried doing it all from the plugins file, but the more I look, the more I 
feel like there's just a few lines where I'd need to change 

>>>if ptype=='PartType0':

 to 

>>>if ptype in ('PartType0', 'PartType0_78'):

in the fields-related scripts and most of my work would be done automatically. 
Does anyone know where those few places might be?
_______________________________________________
yt-users mailing list -- [email protected]
To unsubscribe send an email to [email protected]
https://mail.python.org/mailman3/lists/yt-users.python.org/
Member address: [email protected]

Reply via email to