Analysis Software
Documentation for
sPHENIX
simulation software
Home page
Related Pages
Modules
Namespaces
Classes
Files
Examples
External Links
File List
File Members
Analysis Software
Deprecated List
Modules
Namespaces
Classes
Files
File List
acts
acts-fatras
analysis
analysis_tpc_prototype
coresoftware
Doxygen_Assist
g4exampledetector
GenFit
JETSCAPE
blob
main
examples
external_packages
jail
trentotest
vhlle
src
cll.cpp
cll.h
ctrl.cpp
ctrl.h
eos.cpp
eos.h
fld.cpp
fld.h
hdo.cpp
hdo.h
ic.cpp
ic.h
icGlauber.cpp
icGlauber.h
icGubser.cpp
icGubser.h
inc.h
main.cpp
main.eostest.cpp
rmn.cpp
rmn.h
s95p.cpp
s95p.h
trancoeff.cpp
trancoeff.h
JetScapeWriterAsciiGZ.cc
JetScapeWriterAsciiGZ.h
pwg2_reader.cxx
PWG2Wrapper.cc
writerTest.cc
src
KFParticle
macros
online_distribution
OnlMon
prototype
pythia6
rcdaq
RDBC
tutorials
doxygen_mainpage.h
File Members
Examples
External Links
•
All
Classes
Namespaces
Files
Functions
Variables
Typedefs
Enumerations
Enumerator
Friends
Macros
Groups
Pages
trancoeff.h
Go to the documentation of this file.
Or view
the newest version in sPHENIX GitHub for file trancoeff.h
1
class
EoS
;
2
3
// this class contains the information about the transport coefficients
4
// of the fluid: eta/s, zeta/s and the corresponding relaxation times,
5
// taupi (\tau_\pi) and tauPi (\tau_\Pi)
6
class
TransportCoeff
7
{
8
double
etaS
,
zetaS
,
taupi
,
tauPi
;
9
EoS
*
eos
;
// EoS instance is needed optionally for zeta/s parametrization, which depends on the speed of sound
10
public
:
11
TransportCoeff
(
double
_etaS,
double
_zetaS,
EoS
*_eos) ;
12
~TransportCoeff
() {} ;
13
// returns (optionally temperature dependent) eta/s and zeta/s
14
void
getEta
(
double
e
,
double
T
,
double
&_etaS,
double
&_zetaS) ;
15
// returns shear and bulk relaxation times
16
void
getTau
(
double
T
,
double
&_taupi,
double
&_tauPi) ;
17
// isViscous tells whether the fluid is viscous or inviscid
18
inline
bool
isViscous
() {
if
(
etaS
>0. ||
zetaS
>0.)
return
true
;
else
return
false
; }
19
} ;
JETSCAPE
blob
main
jail
vhlle
src
trancoeff.h
Built by
Jin Huang
. updated:
Sat Feb 17 2024 22:18:24
using
1.8.2 with
sPHENIX GitHub integration