1= """\
2Provider of the computed refractive index (-).
3
4
5outRefractiveIndex(mesh, interpolation='default')
6
7:param mesh mesh: Target mesh to get the field at.
8:param str interpolation: Requested interpolation method.
9
10:return: Data with the refractive index on the specified mesh **(-)**.
11
12Example:
13 Connect the provider to a receiver in some other solver:
14
15 >>> other_solver.inRefractiveIndex = solver.outRefractiveIndex
16
17 Obtain the provided field:
18
19 >>> solver.outRefractiveIndex(mesh)
20 <plask.Data at 0x1234567>
21
22See also:
23
24 Provider class: :class:`plask.flow.RefractiveIndexProviderCyl`
25
26 Receiver class: :class:`plask.flow.RefractiveIndexReceiverCyl`
27"""