Jump to content

ALine

Senior Members
  • Posts

    383
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by ALine

  1. 6 hours ago, Bufofrog said:

    I have a question for you, if 2 protons fuse together what is the resulting product?

    Deuterium

     

    4 hours ago, swansont said:

    I don’t think this would remove the neutrons*, but why use this for the fusion scheme? Why not just use the energy directly?

    How would you extract energy from gamma radiation directly?

  2. 15 hours ago, exchemist said:

    You are turning a helium nucleus into 2 deuterium nuclei rather than the fusion process of turning 2 deuterium nuclei (or one deuterium and one tritium) into helium.

    No, I am turning alpha particles into a proton pair and then waiting for them to fuse by applying energy.

    21 hours ago, swansont said:

    The binding energy of He-4 is around 28 MeV and the resulting p-p system is not bound, so removing the neutrons costs you more than 28 MeV. As I said previously, the best you could possibly do is re-form the alpha and break even.

    If you have a naturally decaying radioactive source such as C-60 which emits gamma radiation then you would not need to worry about input energy. Its just naturally supplied.

  3. I was working trying to figure out how to map input to output and came up with this program.

    def create_mapping_function(inputData, outputData):
        mapping = []
        # map the same to the same
        for i in range(0,len(inputData)):
            for o in range(0,len(outputData)):
                if outputData[o] == inputData[i]:
                    # mapping position to position
                    # this shows the mapping values.
                    mapping.append([i,o])
        return mapping
    inputData = input_data()
    outputData = output_data()
    
    
    mapping = create_mapping_function(inputData, outputData)
    
    # print(f)
    
    # use mapping and save them as a mapping function.
    
    inputData    = ['h','e','l','l','o']
    
    # mapping   = f
    # # input a unique list with a specific length
    #f(x)
    def mapping_function(inputData, mapping):
        outputData = []
        for i in range(0,len(inputData)):
            outputData.append(0) # placeholders
    
        for i in range(0,len(inputData)):
            outputData[mapping[i][1]] = inputData[mapping[i][0]]
    
        return outputData
    
    output = mapping_function(inputData, mapping)
    print(output)

    What it is doing to taking an input and output and then finding there common relationships.

    Afterwards it outputs the mapping with user define input.

  4. now when you say "all the coins in some bags are real and all the coins in other bags are fake." Do you mean that their are no empty bags and there are also no bags which are heterogeneous. Or that they have real and fake coins?

  5. I have been thinking about how you could probe within a map or function in algebra and decided to try to use a sort of "probe" set in-between the sets that are being mapped together. It reminds me of composition and am trying it from that angle, however I need some help with it. The reason I want to do this is because I want to see if I can "discover" a mapping without the need of a mapping(for higher order math's) or function equation for algebra right now.

    Screenshotfrom2023-05-1315-50-59.png.165c30ea8e4260b11608261381e84a90.png

     

    The name could use some work for the topic.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.