Vinay,
Tt and Tc are not something you typically know in most cases. Apply loads and bc's as one normally would in a thermal analysis, specify the appropriate elements and contact regions,value for TCC, etc and let Ansys do it's thing. Note that TCC is input as real constant 14 (see below script). The documentation is just telling you that it can be specified other ways as well. Here's an example of what your input should look like:
ET,100,TARGE170 !Target Element Type Defined
ET,101,CONTA174 !Contact Element Type Defined
KEYOPT,101,1,2 !DOF set to temperature
KEYOPT,101,5,3 !Adjust Gaps/Penetration
KEYOPT,101,9,1 !Exclude Initial Penetration/Gap
KEYOPT,101,11,1 !Include shell thickness (if shell model, excluded for solids)
KEYOPT,101,12,0 !Standard contact specified
!
FKN =.1 !normal stiffness factor
FTOL = .2 !penetration tolerance
ICON = .2 !initial closure factor
CNOF = 1e-6 !offset value assigned to contact surface
TCC = 500/144/3600 !contact conductance value (perfect conduction)
!
!R1, R2, FKN, FTOLN, ICONT, PINB !Real 1-6
!PMAX, PMIN, TAUMAX, CNOF, FKOP, FKT !Real 7-12
!COHE, TCC, FHTG, SBCT,RDVF, FWGT !Real 13-18
!
C*** Contact to Target Specification
!
R,1000,,,FKN,FTOL,ICON,,
RMORE,,,,0,,,
RMORE,,TCC,,,,,
ESEL,NONE $NSEL,NONE !Unselect all nodes & elements
TYPE,100 !Specify Target Elements
ESEL $NSEL !Select Elements of Target Surface
ESURF !Mesh target surface
!
ESEL,NONE $NSEL,NONE !Unselect all nodes & elements
TYPE,101 !Specify Contact Elements
ESEL $NSEL !Select Elements of Target Surface
ESURF !Mesh contact surface
!
Edit this to suit your application...this is just a general format of what a contact macro would look like.
Good luck,
-Brian