We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 36ebb33 commit e999b6eCopy full SHA for e999b6e
1 file changed
rmgpy/solver/surface.pyx
@@ -475,9 +475,9 @@ cdef class SurfaceReactor(ReactionSystem):
475
surface_volume_ratio_si = self.surface_volume_ratio.value_si
476
477
C = np.zeros_like(self.core_species_concentrations)
478
- V = self.V # constant volume reactor
479
- A = self.V * surface_volume_ratio_si # area
480
- total_sites = self.surface_site_density.value_si * A # todo: double check units
+ V = self.V # constant volume reactor in m^3
+ A = self.V * surface_volume_ratio_si # area in m^2
+ total_sites = self.surface_site_density.value_si * A # moles of sites
481
for j in range(num_core_species):
482
if species_on_surface[j]:
483
C[j] = (N[j] / V) / surface_volume_ratio_si
0 commit comments