Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 4 additions & 0 deletions python/classy.pyx
Original file line number Diff line number Diff line change
Expand Up @@ -261,6 +261,10 @@ cdef class Class:
"""Return the scalar tilt n_s (dimensionless) of the primordial scalar spectrum"""
return CallableFloat(self.pm.n_s)
@property
def A_s(self):
"""Return the scalar amplitude A_s (dimensionless) of the primordial scalar spectrum"""
return CallableFloat(self.pm.A_s)
@property
def sigma8(self):
"""Return sigma8 (dimensionless), the root mean square (rms) of the relative density fluctuation of
total matter in spheres of radius R= 8 h/Mpc at z=0.
Expand Down
Loading