12.4.2021 Pt 1

Free Image, Samsung FE20 and Texas Sky
Free Starter Image

The bristle gear at top left represents JetBrains CLion IDE

Many inspirations, Joel Osteen’s clock video reminded me of Amazon’s clock video

Lymph nodes and capillaries at top right

Machine Heart at the bottom

Hydraulic Gear Box to the bottom left

class VolumeUtil {
public:
    double convertLiterToMillileters(double liters) {
        return 1000*liters;
    }

    double convertMillimetersToLiters(double millimeters) {
        return millimeters/1000;
    }

    double convertForceOverAreaToPressure(double force, double unitArea) {
        return force / unitArea;
    }

    double convertVolumeOverUnitTimeToFlowRate(double volume, double unitTime) {
        return volume, unitTime;
    }

    double convertPressureTimesFlowToHorsepower(double pressurePsig, double flowGpm) {
        return (pressurePsig*flowGpm)/1714;
    }

    double convertFlowRateOverInternalAreaToVelocity(double flowRateGpm, double internalAreaSqIn) {
        return (0.3208 * flowRateGpm)/internalAreaSqIn;
    }

    double convertPressureVolumeOfOilUnderPressureToAdditionalVolume(double pressure, double vooUnderPressure) {
        return (pressure*vooUnderPressure)/250000;
    }

    double convertOneOverBmToCompressibility(double bulkModulus) {
        return 1/bulkModulus;
    }

    double convertWeightFluidOverWaterToSpecificGravity(double weightFluid, double weightWater) {
        return weightFluid/weightWater;
    }
};

Free code, needs more tests

Published by techinfodebug

Flex and Java Developer, Christian, Art, Music, Video, and Vlogging

Leave a comment