Scheduled Downtime
On Tuesday 24 October 2023 @ 5pm MT the forums will be in read only mode in preparation for the downtime. On Wednesday 25 October 2023 @ 5am MT, this website will be down for maintenance and expected to return online later in the morning.
Normal Operations
The forums are back online with normal operations. If you notice any issues or errors related to the forums, please reach out to help@ucar.edu

num_a4 unit

nattanan

Nattanan Wongprapinkul
New Member
I have a question regarding the actual unit of the num_a4 parameter.

From what I’ve observed, num_a4 typically has a unit of
(particles/cm²/s) × (molecules/mole) × (g/kg).
However, when I looked into the source code used to generate BC emissions—such as the script at:
https://svn.code.sf.net/p/codescripts/code/trunk/ncl/emission/createBC_US-Russia.ncl —I noticed it uses the "smoke" parameter, which has units of molec/cm³/s. This value is then multiplied by "(MW_bc / mass_particle)", where the units are (g/mole) × (particles/kg). This results in a final unit of
(particles/cm³/s) × (molecules/mole) × (g/kg).

The discrepancy I’m concerned about is the volume versus area component—cm³ versus cm²—between the derived unit and the expected unit. I’d really appreciate any clarification you can provide on this issue.

Best regards,
Nattanan
 

rrbuchholz

Rebecca Buchholz
CSEG and Liaisons
Staff member
Hi Nattanan,

The units of num_particle should be (particles/cm2/s)(molecules/mole)(g/kg), see this line in your linked script:
smokeNum = smoke * MWbc /mass_particle ;(particles/cm2/s)(molecules/mole)(g/kg)
There is a depth unit in your linked script that seems to be converting cm3 to cm2.

This script shows an example of preparing num_*


Best,
Rebecca
 
Vote Upvote 0 Downvote
Top