Guest User

Untitled

a guest
Feb 18th, 2018
78
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.49 KB | None | 0 0
  1. // densities of cooking ingredients from The Cake Bible by Rose Levy Beranbaum
  2. // so you can convert '2 cups sugar' to grams, for example, or in the other
  3. // direction grams could be converted to 'cup flour_scooped'.
  4.  
  5. butter := 8. oz/cup;
  6. butter_clarified := 6.8 oz/cup;
  7. cocoa_butter := 9. oz/cup;
  8. shortening := 6.75 oz/cup; // vegetable shortening
  9. stickbutter := 1/4 lb;
  10. vegetable_oil := 7.5 oz/cup;
  11. cakeflour_sifted := 3.5 oz/cup; // The density of flour depends on the
  12. cakeflour_spooned := 4. oz/cup; // measuring method. "Scooped", or
  13. cakeflour_scooped := 4.5 oz/cup; // "dip and sweep" refers to dipping a
  14. flour_sifted := 4. oz/cup; // measure into a bin, and then sweeping
  15. flour_spooned := 4.25 oz/cup; // the excess off the top. "Spooned"
  16. flour_scooped := 5. oz/cup; // means to lightly spoon into a measure
  17. breadflour_sifted := 4.25 oz/cup; // and then sweep the top. Sifted means
  18. breadflour_spooned := 4.5 oz/cup; // sifting the flour directly into a
  19. breadflour_scooped := 5.5 oz/cup; // measure and then sweeping the top.
  20. cornstarch := 120. grams/cup;
  21. dutchcocoa_sifted := 75. g/cup; // These are for Dutch processed cocoa
  22. dutchcocoa_spooned := 92. g/cup;
  23. dutchcocoa_scooped := 95. g/cup;
  24. cocoa_sifted := 75. g/cup; // These are for nonalkalized cocoa
  25. cocoa_spooned := 82. g/cup;
  26. cocoa_scooped := 95. g/cup;
  27. heavycream := 232. g/cup;
  28. milk := 242. g/cup;
  29. sourcream := 242. g/cup;
  30. molasses := 11.25 oz/cup;
  31. cornsyrup := 11.5 oz/cup;
  32. honey := 11.75 oz/cup;
  33. sugar := 200. g/cup;
  34. powdered_sugar := 4. oz/cup;
  35. brownsugar_light := 217. g/cup; // packed
  36. brownsugar_dark := 239. g/cup;
  37.  
  38. baking_powder := 4.6 grams / tsp;
  39. salt := 6 g / tsp;
  40. koshersalt := 2.8 g / tsp; // Diamond Crystal salt, from package
  41. // Note that Morton kosher salt is
  42. // much denser.
  43. ethanol := .7893 g/cm^3; // Density of ethanol
  44. alcohol := ethanol; // For now, density of ethanol
  45. methanol := .79130 g/cm^3; // Density of methanol
  46.  
  47. // Egg weights and volumes for a USA large egg
  48.  
  49. egg := 50. grams;
  50. eggwhite := 30. grams;
  51. eggyolk := 18.6 grams;
  52. eggvolume := 3. tablespoons + 1/2 tsp;
  53. eggwhitevolume := 2. tablespoons;
  54. eggyolkvolume := 3.5 tsp;
Add Comment
Please, Sign In to add comment