Closed HawkHunt closed 2 years ago
what a coincidence, I just made this engine: https://catalog.engine-sim.parts/parts/13
could do with some timing tuning, I think
Finicu212 your version is 1000 times better than mine. I got it to run and rev, the crank was 90 deg out of position. I advanced it to 45 degrees infront of the bank angle and it fired up. My engine is terrible compared to yours though! I have so much more to learn
This is my first engine where I did everything properly. with a simulator as new as this, we're all beginners. I really recommend using the Discord as a learning resource, everyone in this community is very helpful, you can try out all the different engines shared in the #engine-sharing text channel, and ask for more help on the #support channel
Please join our Discord for further assistance.
Basically, I am trying to get to grips with creating engines.
I made this little CRF250 engine but it just does not want to run, I based a lot of the parts off of the Kohler engine so its not really a CRF250 engine but its close enough for me to learn.
I tried taking out timing, adding timing, lightening the crank, making the crank heavier (same with the flywheel) I gave the starter more RPM, but it just doesnt run.
`import "engine_sim.mr"
units units() constants constants() impulse_response_library ir_lib()
private node wires { output wire1: ignition_wire(); }
label cycle(2 360 units.deg)
public node singleCylinder_distributor { input wires; input timing_curve; input rev_limit: 5500 units.rpm; alias output __out: ignition_module(timing_curve: timing_curve, rev_limit: rev_limit) .connect_wire(wires.wire1, 0 units.deg); }
public node CRF250F { alias output __out: engine;
} `